1. Create a target like this:
{
'target_name': 'shared_no_so_suffix',
'product_extension': 'so.0.1',
'type': 'shared_library',
'sources': [ 'file.c' ],
},
2. Create an executable depending on that target:
{
'target_name': 'shared_executable_no_so_suffix',
'type': 'executable',
'sources': [ 'main.c' ],
'dependencies': [
'shared_no_so_suffix',
]
},
What is the expected output? What do you see instead?
The executable should have an rpath embedded. Instead there is no rpath. It is
quite common for a shared-object to be suffixed with .so.0.1 on Linux.
Original issue reported on code.google.com by martin.j...@gmail.com on 28 Mar 2013 at 1:59
Original issue reported on code.google.com by
martin.j...@gmail.com
on 28 Mar 2013 at 1:59