test building full gcc

This commit is contained in:
Ethan Roseman 2021-08-15 19:50:09 +09:00
parent cf269a90cd
commit 4a37d2e8fb
2 changed files with 9 additions and 3 deletions

View File

@ -40,13 +40,15 @@ jobs:
- name: Configure - name: Configure
shell: bash shell: bash
run: | run: |
./configure --target=mips-nintendo-nu64 --prefix=/opt/cross --disable-gprof --disable-gdb --disable-werror --host=${{ matrix.TARGET.HOST }} --build=${{ matrix.TARGET.HOST }} ./configure --target=mips --prefix=/opt/cross --disable-gprof --disable-gdb --disable-werror --host=${{ matrix.TARGET.HOST }} --build=${{ matrix.TARGET.HOST }}
- name: Make - name: Make
continue-on-error: true continue-on-error: true
shell: bash shell: bash
run: | run: |
make gcc CFLAGS="${{ matrix.TARGET.CFLAGS }}" make cpp CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make cc1 CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make xgcc CFLAGS="${{ matrix.TARGET.CFLAGS }}"
- name: Test for file - name: Test for file
shell: bash shell: bash
@ -58,4 +60,8 @@ jobs:
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: cc1-${{ matrix.TARGET.OS }} name: cc1-${{ matrix.TARGET.OS }}
path: cc1 path: |
as
cpp
cc1
xgcc

BIN
as Executable file

Binary file not shown.