mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 11:22:21 -06:00
On AIX, plugins meant to be loaded into executables via `dlopen` must be linked with access to a list of symbols exported from the executable in order to use them (when not using runtime linking). The AIX linker supports specifying this list as an "import file" passed on the command line either via the `-bI:...` option or (with a leading `#! .` line) as a normal input file like any other library file. The linker import file plays the same role on AIX as import libraries do on Windows. Teach CMake to enable its import library abstraction on AIX for executables with the `ENABLE_EXPORTS` target property set. Teach our internal `ExportImportList` script to optionally generate a leading `#! .` line at the top of the generated export/import list. Update our rule for linking an executable with exports to generate a public-facing "import library" implemented as an AIX linker import file. With this approach, our existing infrastructure for handling import libraries on Windows will now work for AIX linker import files too: * Plugins that link to their executable's symbols will be automatically linked using the import file on the command line. * The executable's import file will be (optionally) installed and exported for use in linking externally-built plugins. This will allow executables and their plugins to build even if we later turn off runtime linking. Issue: #19163
34 lines
1.4 KiB
CMake
34 lines
1.4 KiB
CMake
set(CMAKE_SHARED_LIBRARY_PREFIX "lib") # lib
|
|
set(CMAKE_SHARED_LIBRARY_SUFFIX ".so") # .so
|
|
set(CMAKE_AIX_IMPORT_FILE_PREFIX "")
|
|
set(CMAKE_AIX_IMPORT_FILE_SUFFIX ".imp")
|
|
set(CMAKE_DL_LIBS "-lld")
|
|
|
|
# RPATH support on AIX is called libpath. By default the runtime
|
|
# libpath is paths specified by -L followed by /usr/lib and /lib. In
|
|
# order to prevent the -L paths from being used we must force use of
|
|
# -Wl,-blibpath:/usr/lib:/lib whether RPATH support is on or not.
|
|
# When our own RPATH is to be added it may be inserted before the
|
|
# "always" paths.
|
|
if(NOT DEFINED CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH)
|
|
set(CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH /usr/lib /lib)
|
|
endif()
|
|
|
|
# Files named "libfoo.a" may actually be shared libraries.
|
|
set_property(GLOBAL PROPERTY TARGET_ARCHIVES_MAY_BE_SHARED_LIBS 1)
|
|
|
|
# since .a can be a static or shared library on AIX, we can not do this.
|
|
# at some point if we wanted it, we would have to figure out if a .a is
|
|
# static or shared, then we could add this back:
|
|
|
|
# Initialize C link type selection flags. These flags are used when
|
|
# building a shared library, shared module, or executable that links
|
|
# to other libraries to select whether to use the static or shared
|
|
# versions of the libraries.
|
|
#foreach(type SHARED_LIBRARY SHARED_MODULE EXE)
|
|
# set(CMAKE_${type}_LINK_STATIC_C_FLAGS "-bstatic")
|
|
# set(CMAKE_${type}_LINK_DYNAMIC_C_FLAGS "-bdynamic")
|
|
#endforeach()
|
|
|
|
include(Platform/UnixPaths)
|