Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
hcc18
parabix-devel
Commits
93b3a531
Commit
93b3a531
authored
3 years ago
by
lperesde
Committed by
luizperes
3 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Fixing small bug on generation of dynamic libs and setting them as default
parent
4d670603
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
CMakeLists.txt
CMakeLists.txt
+1
-1
lib/toolchain/CMakeLists.txt
lib/toolchain/CMakeLists.txt
+1
-1
No files found.
CMakeLists.txt
View file @
93b3a531
...
...
@@ -28,7 +28,7 @@ option(GENERATE_TOOLS "Controls whether or not it generate tools" ON)
# Build Artifact Configuration
set
(
ARTIFACT_MODE
"Multiple"
CACHE STRING
"Build framework into a single artifact (Single) or multiple artifacts (Multiple)"
)
set
(
ARTIFACT_TYPE
"S
tatic
"
CACHE STRING
"Build frameword as shared (Shared) or static (Static) libraries"
)
set
(
ARTIFACT_TYPE
"S
hared
"
CACHE STRING
"Build frameword as shared (Shared) or static (Static) libraries"
)
# Validate framework build style
set
(
VALID_BUILD_MODE
"Single"
"Multiple"
)
...
...
This diff is collapsed.
Click to expand it.
lib/toolchain/CMakeLists.txt
View file @
93b3a531
...
...
@@ -22,7 +22,7 @@ SRC
toolchain.cpp
)
if
(
ARTIFACT_TYPE STREQUAL
"Shared"
AND ARTIFACT_MODE EQUAL
"Multiple"
)
if
(
ARTIFACT_TYPE STREQUAL
"Shared"
AND ARTIFACT_MODE
STR
EQUAL
"Multiple"
)
if
(
APPLE
)
# The Darwin linker on macOS does not support the --whole-archive flag.
# Instead it has -all_load which does something similar. On macOS we need
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
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