[v8-users] Re: Missing symbol ___asan_version_mismatch_check_v8

2016-12-01 Thread tblodt
That didn't work. V8 insisted on linking with the asan runtime included 
with it's special version of clang, so mkpeephole wouldn't run because it 
couldn't find ___asan_version_mismatch_check_apple_800. I'm going to try 
playing with the executable path.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[v8-users] Re: Missing symbol ___asan_version_mismatch_check_v8

2016-12-01 Thread tblodt
Well, I looked a little more closely at the compiler options and discovered 
that my library is not, in fact, getting compiled with ASAN. Only V8 is.

Now the problem is that if I compile the library with the same compiler as 
V8, it can't find @executable_path/libclang_rt.asan_osx_dynamic.dylib, but 
if I compile it with the system version of clang, I still get a missing 
___asan_version_mismatch_check_v8, because the binary includes 
___asan_version_mismatch_check_apple_800 instead.

I'm going to try compiling V8 with system clang, hopefully that'll work.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[v8-users] Re: Missing symbol ___asan_version_mismatch_check_v8

2016-12-01 Thread tblodt
I just tried compiling my library with the same prebuilt compiler used for 
v8 (third_party/llvm-build/Release+Asserts/bin/clang), and it still didn't 
work.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[v8-users] Re: Missing symbol ___asan_version_mismatch_check_v8

2016-12-01 Thread tblodt
Also, d8 loads fine.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.