Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
28070b4a
Commit
28070b4a
authored
Jul 05, 2012
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed 32bit build on MacOS
parent
72caf95d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
CMakeLists.txt
CMakeLists.txt
+12
-4
No files found.
CMakeLists.txt
View file @
28070b4a
...
...
@@ -64,15 +64,23 @@ set(boost_context third_party/boost_context/)
# add third_party boost_context sources
if
(
APPLE
)
if
(
CMAKE_SIZEOF_VOID_P EQUAL 4
)
set_property
(
SOURCE
${
boost_context
}
/src/asm/fcontext_i386_sysv_macho_gas.S
PROPERTY LANGUAGE CXX
)
set
(
fcontext_asm
${
boost_context
}
/src/asm/fcontext_i386_sysv_macho_gas.S
)
else
()
set_property
(
SOURCE
${
boost_context
}
/src/asm/fcontext_x86_64_sysv_macho_gas.S
PROPERTY LANGUAGE CXX
)
set
(
fcontext_asm
${
boost_context
}
/src/asm/fcontext_x86_64_sysv_macho_gas.S
)
endif
()
set
(
LIBCPPA_SRC
${
LIBCPPA_SRC
}
${
boost_context
}
/src/stack_utils_posix.cpp
${
boost_context
}
/src/stack_allocator_posix.cpp
${
boost_context
}
/src/fcontext.cpp
${
boost_context
}
/src/asm/fcontext_x86_64_sysv_macho_gas.S
${
fcontext_asm
}
)
elseif
(
UNIX
)
if
(
CMAKE_SIZEOF_VOID_P EQUAL 4
)
...
...
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