mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
fail if we can't find the v8 library
This commit is contained in:
parent
18571c17cf
commit
848d2866de
1 changed files with 1 additions and 3 deletions
|
@ -1,8 +1,6 @@
|
||||||
require 'mkmf'
|
require 'mkmf'
|
||||||
|
|
||||||
CONFIG['LDSHARED'] = "g++ -shared"
|
|
||||||
|
|
||||||
dir_config('v8')
|
dir_config('v8')
|
||||||
have_library('v8')
|
have_library('v8') or raise "unable to find libv8"
|
||||||
|
|
||||||
create_makefile('v8')
|
create_makefile('v8')
|
||||||
|
|
Loading…
Reference in a new issue