We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3ed18f commit 2bd3814Copy full SHA for 2bd3814
.github/workflows/make.yml
@@ -73,8 +73,10 @@ jobs:
73
shell: msys2 {0}
74
run: |
75
PREFIX=$(cygpath -m "$GITHUB_WORKSPACE/binutils-install")
76
- ./configure --target=z80-none-elf --disable-gdb --disable-sim --disable-readline --prefix="$PREFIX"
77
- make -j4 MAKEINFO=true && make install -j4 MAKEINFO=true
+ ./configure --target=z80-none-elf --disable-gdb --disable-sim --disable-readline --disable-shared --enable-static --disable-tls --prefix="$PREFIX"
+ make configure-host -j6
78
+ make LDFLAGS="-all-static" MAKEINFO=true -j6
79
+ make install -j6
80
81
- name: "[Unix] Tar install"
82
if: runner.os != 'Windows'
0 commit comments