File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ module RbConfig
128
128
129
129
# Link to libtruffleruby by absolute path
130
130
libtruffleruby_dir = File . dirname ( libtruffleruby )
131
- librubyarg = "-L#{ libtruffleruby_dir } -rpath #{ libtruffleruby_dir } -ltruffleruby -lpolyglot-mock "
131
+ librubyarg = "-L#{ libtruffleruby_dir } -rpath #{ libtruffleruby_dir } -ltruffleruby -lgraalvm-llvm "
132
132
133
133
warnflags = warnflags . join ( ' ' )
134
134
Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ module Truffle::Platform
24
24
$CFLAGS << " -DRUBY_EXPORT"
25
25
26
26
# Do no link against libtruffleruby for libtruffleruby itself.
27
- # We still need libtruffleruby to link against libpolyglot-mock ,
27
+ # We still need libtruffleruby to link against libgraalvm-llvm ,
28
28
# otherwise linking fails with "Undefined symbols" on macOS.
29
29
if Truffle ::Platform . darwin?
30
30
# Set the install_name of libtruffleruby on macOS, so C exts linking to it
31
31
# will know they need to look at the rpath to find it.
32
- $LIBRUBYARG = "-Wl,-install_name,@rpath/libtruffleruby.dylib -lpolyglot-mock "
32
+ $LIBRUBYARG = "-Wl,-install_name,@rpath/libtruffleruby.dylib -lgraalvm-llvm "
33
33
else
34
- $LIBRUBYARG = "-lpolyglot-mock "
34
+ $LIBRUBYARG = "-lgraalvm-llvm "
35
35
end
36
36
37
37
create_makefile ( 'libtruffleruby' )
You can’t perform that action at this time.
0 commit comments