Status: New
Owner: ----
New issue 1786 by holisme: gyp soname_version : use product_extension
instead of product_name
http://code.google.com/p/v8/issues/detail?id=1786
In tools/gyp/v8.gyp, this comment :
# Ideally, we'd like to specify the full filename for the
# library and set it to "libv8.so.<(soname_version)",
# but currently the best we can do is use 'product_name' and
# get "libv8-<(soname_version).so".
can be achieved by simply replacing the line that follows it :
'product_name': 'v8-<(soname_version)',
by
'product_extension': 'so.<(soname_version)',
and it all works perfectly (don't mind the version in this example) :
objdump -p libv8.so.3.6.6.5 | grep SONAME
SONAME libv8.so.3.6.6.5
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev