|
|
(51 intermediate revisions by 9 users not shown) |
Line 1: |
Line 1: |
| * [[CMake IA64 Issues|IA64 Issues]]
| | {{CMake/Template/Moved}} |
|
| |
|
| * [[CMake Borland Compiler Issues|Borland Compiler Issues]]
| | This page has moved [https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/Platform-Dependent-Issues here]. |
| | |
| == The Platforms / Compilers Table ==
| |
| | |
| {| border="1"
| |
| |- bgcolor="#abcdef"
| |
| ! Platform !! System Info !! Compilers !! List Dependencies !! Trace Syscal/Signal !! Runtime Library Path
| |
| |-
| |
| | Linux || uname -a || gcc, g++, icc || ldd program || strace || $LD_LIBRARY_PATH
| |
| |-
| |
| | HP-UX || uname -a || cc, aCC || chatr program || || $SHLIB_PATH
| |
| |-
| |
| | AIX || uname -a || xlc, xlC || dump -H program || || $LIBPATH
| |
| |-
| |
| | SunOS || uname -a || cc, CC || ldd program || || $LD_LIBRARY_PATH
| |
| |-
| |
| | IRIX || hinv, uname -a || cc, CC || ldd program || || $LD_LIBRARY_PATH, $LD_LIBRARYN32_PATH, $LD_LIBRARY64_PATH
| |
| |-
| |
| | Max OSX / Darwin || system_profiler, uname -a || gcc, g++ || otool -L program || ktrace -f outfile program; kdump outfile || $DYLD_LIBRARY_PATH
| |
| |-
| |
| |rowspan=3| Windows ||rowspan=3| ver || Visual Studio 6, cl || depends program.exe ||rowspan=3| ||rowspan=3| $PATH
| |
| |-
| |
| |Visual Studio 7, cl || depends program.exe '''†'''
| |
| |-
| |
| |Visual Studio 7.1, cl || depends program.exe '''†'''
| |
| |}
| |
| | |
| * '''†''' In order for ''depends'' to be installed, the "Win32 Platform SDK Tool" needs to be selected when installing Visual Studio (See [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/vccondeterminingwhichdllstoredistribute.asp Determining Which DLLs to Redistribute]).
| |
| | |
| * More platform specific information can be found in [http://bhami.com/rosetta.html ROSETTA STONE] platforms table (Mostly for system administrators)
| |
| | |
| * Another even more complete table: [http://www.fortran-2000.com/ArnaudRecipes/sharedlib.html Using static and shared libraries across platforms] (For various compiler flags and options)
| |