summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/AIX-XL.cmake
Commit message (Collapse)AuthorAgeFilesLines
* AIX: Do not use -brtl to create shared libraries (#13997)Brad King2013-03-111-1/+1
| | | | | | | | | | The flag was added incorrectly by commit 9c3a6eb4 (Need -brtl when creating shared libraries, 2003-05-16). According to "man ld" the -G option implies "-brtl -bnortllib ...", -brtl implies "-brtllib", and -brtllib should only be used for executables, not shared libraries. Therefore it is incorrect and unnecessary to specify -brtl explicitly after -G. Reported-by: Kevin Burge <kcburge@gmail.com>
* Move RPATH flags to AIX per-compiler information filesBrad King2011-03-021-0/+2
| | | | | | Move RPATH flags out of Platform/AIX.cmake into platform-specific compiler information files Platform/AIX-XL and Platform/AIX-GNU. The flags need to be set for each compiler of each language.
* Factor AIX and XL compiler flags into common moduleBrad King2011-03-021-0/+26
Factor duplicate flag information from Platform/AIX-XL-*.cmake into Platform/AIX-XL.cmake and load it from the original files.