File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 6565 if : runner.os == 'macOS'
6666 shell : bash
6767 run : |
68- ./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --disable-plugins --prefix="${{ runner.temp }}/binutils"
68+ ./configure --target=z80-none-elf --with-zstd=no --disable-gdb --disable-sim --disable-readline --disable-nls --disable-plugins --with-system-zlib -- prefix="${{ runner.temp }}/binutils"
6969 make -j4 && make install-strip -j4
7070
7171 - name : " [Windows] Build binutils"
@@ -97,15 +97,15 @@ jobs:
9797 if : runner.os != 'Windows'
9898 shell : bash
9999 run : |
100- cd ${{ runner.temp }} && tar -chzvf binutils-${{ runner.os }}.${{ matrix.install-output-ext }} --exclude='z80-none-elf' binutils
100+ cd ${{ runner.temp }} && tar -chzvf binutils-${{ runner.os }}.${{ matrix.install-output-ext }} --exclude='z80-none-elf' --exclude='lib' binutils
101101 mv ${{ runner.temp }}/binutils-${{ runner.os }}.${{ matrix.install-output-ext }} ${{github.workspace}}
102102
103103 - name : " [Windows] Tar install"
104104 if : runner.os == 'Windows'
105105 shell : pwsh
106106 run : |
107107 Set-Location "${{ runner.temp }}"
108- tar -chzvf "binutils-${{ runner.os }}.${{ matrix.install-output-ext }}" --exclude='z80-none-elf' binutils
108+ tar -chzvf "binutils-${{ runner.os }}.${{ matrix.install-output-ext }}" --exclude='z80-none-elf' --exclude='lib' binutils
109109 Move-Item "binutils-${{ runner.os }}.${{ matrix.install-output-ext }}" "${{ github.workspace }}"
110110
111111 - name : Upload binutils
You can’t perform that action at this time.
0 commit comments