Ich habe das Projekt mit dem folgenden Skript konfiguriert:
Code: Select all
export CC=arm-linux-gnueabihf-gcc
export CXX=arm-linux-gnueabihf-g++
export CC_host="gcc -m32"
export CXX_host="g++ -m32"
mkdir ../node_build_armv6
./configure --prefix=../node_build_armv6 --dest-cpu=arm --cross-compiling --dest-os=linux --with-arm-float-abi=hard --with-arm-fpu=neon
Die Fehler, die ich erhalte, sehen so aus:< /p>
Code: Select all
/usr/lib/gcc-cross/arm-linux-gnueabihf/13/include/arm_neon.h:10460:1: error: inlining failed in call to ‘always_inline’ ‘vld1q_u16’: target specific option mismatch
10460 | vld1q_u16 (const uint16_t * __a)
| ^~~~~~~~~
../deps/zlib/slide_hash_simd.h:50:25: note: called from here
50 | uint16x8_t v8 = vld1q_u16(table + 8); \
| ^~~~~~~~~~~~~~~~~~~~
../deps/zlib/slide_hash_simd.h:107:5: note: in expansion of macro ‘Z_SLIDE_HASH_SIMD’
107 | Z_SLIDE_HASH_SIMD(prev, w_size, vec_wsize);
| ^~~~~~~~~~~~~~~~~
/usr/lib/gcc-cross/arm-linux-gnueabihf/13/include/arm_neon.h:10460:1: error: inlining failed in call to ‘always_inline’ ‘vld1q_u16’: target specific option mismatch
10460 | vld1q_u16 (const uint16_t * __a)
| ^~~~~~~~~
../deps/zlib/slide_hash_simd.h:49:25: note: called from here
49 | uint16x8_t vO = vld1q_u16(table + 0); \
| ^~~~~~~~~~~~~~~~~~~~
../deps/zlib/slide_hash_simd.h:107:5: note: in expansion of macro ‘Z_SLIDE_HASH_SIMD’
107 | Z_SLIDE_HASH_SIMD(prev, w_size, vec_wsize);
| ^~~~~~~~~~~~~~~~~
Gibt es ein configure-Argument, das ich übergeben kann, um diesen Fehler zu vermeiden?