Skip to content
Snippets Groups Projects
Commit 82fe0d0a authored by Manuel Günther's avatar Manuel Günther
Browse files

**Disabled** the RPATH for bob libraries; they have to import their libraries themselves now

parent c92378eb
No related branches found
No related tags found
No related merge requests found
......@@ -285,7 +285,7 @@ class Extension(DistutilsExtension):
parameters = {
'define_macros': generate_self_macros(name, version),
'extra_compile_args': ['-std=c++0x'], #synonym for c++11?
'library_dirs': bob_library_dirs,
'library_dirs': [],
'libraries': bob_libraries,
}
......@@ -392,6 +392,9 @@ class Extension(DistutilsExtension):
kwargs['runtime_library_dirs'] += kwargs['library_dirs']
kwargs['runtime_library_dirs'] = uniq(kwargs['runtime_library_dirs'])
# .. except for the bob libraries
kwargs['library_dirs'] += bob_library_dirs
# Run the constructor for the base class
DistutilsExtension.__init__(self, name, sources, **kwargs)
......@@ -541,7 +544,7 @@ class build_ext(_build_ext):
2. adds the according include and library directories so that other Extensions can find the newly generated libs
.. note::
This function **does not** add the library itself.
This function also adds the library itself.
To link the generated library into another Extension, add this lib in the list of ``libraries``.
3. compiles the remaining extensions using the default extension mechanism
......@@ -572,7 +575,6 @@ class build_ext(_build_ext):
for ext in self.extensions:
ext.libraries = libs + (ext.libraries if ext.libraries else [])
ext.library_dirs = lib_dirs + (ext.library_dirs if ext.library_dirs else [])
ext.runtime_library_dirs = lib_dirs + (ext.runtime_library_dirs if ext.runtime_library_dirs else [])
ext.include_dirs = include_dirs + (ext.include_dirs if ext.include_dirs else [])
# call the base class function
......
......@@ -16,7 +16,7 @@ HEADER = (
'\n'
'# Force __LP64__ scheme on Mac OSX\n'
'if(APPLE)\n'
' set(CMAKE_MACOSX_RPATH FALSE CACHE BOOL "Enables the MACOS_RPATH feature for MacOSX builds" FORCE)\n'
' set(CMAKE_MACOSX_RPATH FALSE CACHE BOOL "Enables the MACOS_RPATH feature for MacOSX builds" FORCE)\n'
' set(COMMON_FLAGS "${COMMON_FLAGS} -m64")\n'
'endif(APPLE)\n'
'\n'
......@@ -106,6 +106,7 @@ class CMakeListsGenerator:
for directory in self.system_includes:
f.write('include_directories(SYSTEM %s)\n' % directory)
# add link directories
# TODO: handle RPATH and Non-RPATH differently (don't know, how, though)
for directory in self.library_directories:
f.write('link_directories(%s)\n' % directory)
# add defines
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment