From 9b6f4d7f9730af89b1b66bf0d20e0b93c67ca57c Mon Sep 17 00:00:00 2001 From: Murray Date: Sun, 19 Nov 2023 10:16:52 +0000 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b752e41..4836389 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -208,9 +208,8 @@ jobs: mkdir hello && cd hello sed -i 's/-O1/-O0/' /opt/boot/bin/mlton echo 'print "hi\n";' > hello.sml - PATH="/opt/boot/bin:$PATH" mlton -verbose 2 -debug true -keep g -keep o -target ${{ matrix.arch.name }}-linux-${{ matrix.libc }} -cc-opt -I/usr/local/${{ matrix.arch.name }}-linux-${{ matrix.libc }}/include -cc-opt -Wall -cc-opt -Wextra -link-opt -fuse-ld=gold -link-opt -L/usr/local/${{ matrix.arch.name }}-linux-${{ matrix.libc }}/lib -link-opt -static hello.sml + PATH="/opt/boot/bin:$PATH" mlton -verbose 2 -debug true -keep g -keep o -align 8 -target ${{ matrix.arch.name }}-linux-${{ matrix.libc }} -cc-opt -I/usr/local/${{ matrix.arch.name }}-linux-${{ matrix.libc }}/include -cc-opt -Wall -cc-opt -Wextra -link-opt -L/usr/local/${{ matrix.arch.name }}-linux-${{ matrix.libc }}/lib -link-opt -static hello.sml ./hello - false - name: Build MLton run: |