From c5dd057d27df1a4e8cd65c0fa828799c7d88a418 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Tue, 26 Mar 2024 16:04:27 -0700 Subject: [PATCH] FIXUP linux wcl --- .github/workflows/ci.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1fea149..f0f0978 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -254,11 +254,9 @@ jobs: - uses: open-watcom/setup-watcom@v0 - name: 'Patch makefile for OpenWatcom' run: sed -Ei -e '/Open Watcom/,/^$/s/^#([^ ])/\1/' -e 's/\.obj/.o/g' makefile.dos - - name: 'Compile with OpenWatcom for x86' - run: wmake -f makefile.dos EXTRAOBJS=watcom/src/startup/wildargv.c - - name: 'Strip binary' - run: wstrip fvcbm.exe - - uses: actions/upload-artifact@v4 - with: - name: 'fvcbm.exe' - path: fvcbm.exe + - name: 'Compile with OpenWatcom for Linux' + run: wmake -f makefile.dos EXTRAOBJS= CC=wcl386 CFLAGS='-q -bcl=linux -ox' + - name: 'Smoke test' + run: ./fvcbm +# - name: 'Compile with OpenWatcom for x86' +# run: wmake -f makefile.dos EXTRAOBJS=watcom/src/startup/wildargv.c