Skip to content

Commit

Permalink
fix the escaping, and expand the path escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
eightbitraptor committed Sep 27, 2024
1 parent 313dd5f commit 002497e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,16 @@ jobs:

- name: Build shared GC (${{ matrix.gc_name }})
run: |
MMTK_BUILD_PATH=$(pwd)/../src/gc/mmtk/target/release
mkdir ${{ matrix.shared_gc_dir }} &&
gcc -shared \
-I../src/include \
-I../src \
-I.ext/include/x86_64-linux \
-Wl,--verbose,--compress-debug-sections=zlib \
-Wl,--rpath=$(pwd)/../src/gc/mmtk/target/release
-L$(pwd)/../src/gc/mmtk/target/release -lmmtk_ruby \
-Wl,--rpath=$(MMTK_BUILD_PATH) \
-L$(readlink -f $MMTK_BUILD_PATH) -lmmtk_ruby \
-fstack-protector-strong \
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 \
-O3 -fno-fast-math -ggdb3 -DBUILDING_SHARED_GC -fPIC \
Expand Down

0 comments on commit 002497e

Please sign in to comment.