Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
6ddb4240
Commit
6ddb4240
authored
Mar 03, 2015
by
Daniel Agar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake add all headers as dependencies for inlined code
-fixes #339
parent
39859d79
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/runtime/inline/CMakeLists.txt
src/runtime/inline/CMakeLists.txt
+5
-1
No files found.
src/runtime/inline/CMakeLists.txt
View file @
6ddb4240
...
...
@@ -37,8 +37,12 @@
# adapted from https://github.com/shadow/shadow/blob/master/cmake/LLVMTools.cmake
set
(
BC_INLINE_SRCS boxing.cpp dict.cpp link_forcer.cpp list.cpp tuple.cpp xrange.cpp
)
include_directories
(
${
CMAKE_SOURCE_DIR
}
/src
)
file
(
GLOB_RECURSE PYSTON_HEADERS
${
CMAKE_SOURCE_DIR
}
/src/*.h
)
file
(
GLOB_RECURSE FROM_CPYTHON_HEADERS
${
CMAKE_SOURCE_DIR
}
/from_cpython/*.h
)
# set CXX flags
set
(
BC_CXX_FLAGS
""
)
if
(
${
CMAKE_BUILD_TYPE
}
STREQUAL
"Debug"
)
...
...
@@ -72,7 +76,7 @@ foreach(BC_SRC ${BC_INLINE_SRCS})
# generate the bitcode for this file
add_custom_command
(
OUTPUT
${
BC_SRC_BASENAME
}
.bc
COMMAND
${
LLVM_TOOLS_BINARY_DIR
}
/clang++
${
BC_DEFINES
}
${
BC_CXX_FLAGS
}
${
BC_INCLUDES
}
-c
${
BC_SRC_FULLPATH
}
-o
${
BC_SRC_BASENAME
}
.bc -emit-llvm
DEPENDS
${
BC_SRC_FULLPATH
}
clang
DEPENDS
${
BC_SRC_FULLPATH
}
clang
${
PYSTON_HEADERS
}
${
FROM_CPYTHON_HEADERS
}
COMMENT
"Building LLVM bitcode
${
BC_SRC_BASENAME
}
.bc"
VERBATIM
)
set_property
(
DIRECTORY APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES
${
BC_SRC_BASENAME
}
.bc
)
...
...
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