1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00

need a space in -lv8 for linux

This commit is contained in:
Charles Lowell 2010-06-02 13:05:32 +03:00
parent c81ea28856
commit 3b30e3c5bd

View file

@ -18,7 +18,7 @@ $CPPFLAGS += " -g" unless $CPPFLAGS.split.include? "-g"
$CPPFLAGS += " -rdynamic" unless $CPPFLAGS.split.include? "-rdynamic"
$DEFLIBPATH.unshift(BUILD)
$LIBS << '-lv8'
$LIBS << ' -lv8'
CONFIG['LDSHARED'] = '$(CXX) -shared' unless RUBY_PLATFORM =~ /darwin/