diff options
author | Brad King <brad.king@kitware.com> | 2019-07-17 13:15:56 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-07-17 13:16:07 (GMT) |
commit | 44a6468304ad7b2e7d7b9e9b43bc04588f0ab918 (patch) | |
tree | 9369ac7e89bc5176f922e5be5464a3e5ef7b7762 /Help/release | |
parent | 74ad28fa6a05d033eb99db949eb095fc192c34ad (diff) | |
parent | 2fa920c0cd5c186d0991c9636c9af6691ead8dce (diff) | |
download | CMake-44a6468304ad7b2e7d7b9e9b43bc04588f0ab918.zip CMake-44a6468304ad7b2e7d7b9e9b43bc04588f0ab918.tar.gz CMake-44a6468304ad7b2e7d7b9e9b43bc04588f0ab918.tar.bz2 |
Merge topic 'aix-exe-implib'
2fa920c0cd AIX: Create import library for executables with exports
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3561
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/dev/aix.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Help/release/dev/aix.rst b/Help/release/dev/aix.rst new file mode 100644 index 0000000..c24872e --- /dev/null +++ b/Help/release/dev/aix.rst @@ -0,0 +1,10 @@ +aix +--- + +* On AIX, executables using the :prop_tgt:`ENABLE_EXPORTS` target property + now produce a linker import file with a ``.imp`` extension in addition + to the executable file. Plugins (created via :command:`add_library` with + the ``MODULE`` option) that use :command:`target_link_libraries` to link + to the executable for its symbols are now linked using the import file. + The :command:`install(TARGETS)` command now installs the import file as + an ``ARCHIVE`` artifact. |