Skip to content

Commit

Permalink
Statically link alpine binaries: -ccopt -static (mit-plv#1718)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross authored Nov 13, 2023
1 parent 80e474d commit 2315109
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/coq-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: make TIMED=1 TIMING=1 -j2 deps
- name: all-except-generated
shell: alpine.sh {0}
run: make TIMED=1 TIMING=1 -j2 all-except-generated
run: make TIMED=1 TIMING=1 -j2 CAMLEXTRAFLAGS="-ccopt -static" all-except-generated
- name: generated-files
shell: alpine.sh {0}
run: make TIMED=1 TIMING=1 -j2 generated-files
Expand Down Expand Up @@ -134,10 +134,10 @@ jobs:
file $prog
echo "::endgroup::"
echo "::group::ldd $prog"
ldd $prog
ldd $prog || true
echo "::endgroup::"
echo "::group::$prog"
./$prog -h || echo "::error::$prog does not run on host" # does not work yet
./$prog -h
echo "::endgroup::"
done
- uses: jirutka/setup-alpine@v1
Expand Down

0 comments on commit 2315109

Please sign in to comment.