Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
39e43360
Commit
39e43360
authored
Jan 03, 2003
by
Bill Hoffman
Browse files
BUG: bad rpath flag for suns
parent
ee459411
Changes
1
Show whitespace changes
Inline
Side-by-side
Modules/Platform/SunOS.cmake
View file @
39e43360
IF
(
CMAKE_SYSTEM MATCHES
"SunOS-4.*"
)
SET
(
CMAKE_SHARED_LIBRARY_C_FLAGS
"-PIC"
)
SET
(
CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS
"-shared -Wl,-r -nostdlib"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_FLAG
"-Wl,-R
,
"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_FLAG
"-Wl,-R"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_FLAG_SEP
":"
)
ENDIF
(
CMAKE_SYSTEM MATCHES
"SunOS-4.*"
)
IF
(
CMAKE_SYSTEM MATCHES
"SunOS-5*."
)
SET
(
CMAKE_SHARED_LIBRARY_C_FLAGS
"-KPIC"
)
SET
(
CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS
"-G"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_FLAG
"-R
,
"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_FLAG
"-R"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_FLAG_SEP
":"
)
IF
(
CMAKE_COMPILER_IS_GNUCC
)
SET
(
CMAKE_SHARED_LIBRARY_C_FLAGS
"-fPIC"
)
SET
(
CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS
"-shared -nostdlib"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_FLAG
"-Wl,-R
,
"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_FLAG
"-Wl,-R"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_FLAG_SEP
":"
)
ENDIF
(
CMAKE_COMPILER_IS_GNUCC
)
IF
(
CMAKE_COMPILER_IS_GNUCXX
)
SET
(
CMAKE_SHARED_LIBRARY_CXX_FLAGS
"-fPIC"
)
SET
(
CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS
"-shared -nostdlib"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG
"-Wl,-R
,
"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG
"-Wl,-R"
)
SET
(
CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP
":"
)
ENDIF
(
CMAKE_COMPILER_IS_GNUCXX
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment