We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8375b36 commit 252d974Copy full SHA for 252d974
1 file changed
.github/workflows/cmake.yml
@@ -24,7 +24,6 @@ jobs:
24
binutils-i686-linux-gnu \
25
gcc-i686-linux-gnu \
26
libgcc-s1-i386-cross \
27
- gcc-multilib \
28
wget
29
30
- name: Cache AI Model
@@ -44,12 +43,13 @@ jobs:
44
43
run: |
45
mkdir -p build
46
cd build
47
- # Use the cross-compiler explicitly and force 32-bit mode
+ # Use the cross-compiler, force 32-bit mode, and skip the link check for the compiler test
48
cmake .. \
49
-DCMAKE_C_COMPILER=i686-linux-gnu-gcc \
50
-DCMAKE_ASM_NASM_COMPILER=nasm \
51
-DCMAKE_ASM_NASM_FLAGS="-f elf32" \
52
- -DCMAKE_C_FLAGS="-m32"
+ -DCMAKE_C_FLAGS="-m32" \
+ -DCMAKE_TRY_COMPILE_TARGET_TYPE=STATIC_LIBRARY
53
make
54
55
- name: Verify Kernel Architecture
0 commit comments