Correction: the flag name is /Zc:dllexportInlines-.

Also, a couple of other things I should mention for completeness:
- Attempting to link with a shared library that was built with a different 
toolchain is a recipe for maddening runtime errors unless that library takes 
great care to export only ABI-stable things, which V8 does not.
- The errors in your latest post were related to imported functions, but 
problems building without this flag often manifest as the linker complaining 
about unresolved external functions. This is because the linker is fine with 
functions being undefined if the function is never called, but a dllexport 
function needs a definition.

-- 
-- 
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev
--- 
You received this message because you are subscribed to the Google Groups 
"v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/v8-dev/756ac33e-95bf-41ea-b82e-d2f187ccd779%40googlegroups.com.

Reply via email to