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
e7322473
Commit
e7322473
authored
Jan 02, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #249 from dagar/cmake-updates
Cmake small updates to match Makefile
parents
96f24852
c64593b8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
14 deletions
+23
-14
.travis.yml
.travis.yml
+3
-2
CMakeLists.txt
CMakeLists.txt
+17
-8
lib_pyston/CMakeLists.txt
lib_pyston/CMakeLists.txt
+2
-3
lib_python/CMakeLists.txt
lib_python/CMakeLists.txt
+1
-1
No files found.
.travis.yml
View file @
e7322473
...
...
@@ -17,10 +17,11 @@ install:
-
git config --global user.name "Your Name"
-
mkdir ~/pyston-build && cd ~/pyston-build
-
cmake -GNinja $TRAVIS_BUILD_DIR
-
cd ~/pyston-build && ninja llvm_up && ninja lint check-format
-
ninja llvm_up
-
ninja libunwind ext_cpython
script
:
-
cd ~/pyston-build &&
ninja -j4 check-pyston
-
ninja -j4 check-pyston
os
:
-
linux
...
...
CMakeLists.txt
View file @
e7322473
...
...
@@ -21,6 +21,7 @@ option(ENABLE_GOLD "enable the gold linker" ON)
option
(
ENABLE_GRWL
"threading use GRWL"
OFF
)
option
(
ENABLE_INTEL_JIT_EVENTS
"LLVM support for Intel JIT Events API"
OFF
)
option
(
ENABLE_LLVM_DEBUG
"LLVM debug symbols"
OFF
)
option
(
ENABLE_SELF_HOST
"use pyston to test pyston"
OFF
)
option
(
ENABLE_VALGRIND
"pyston valgrind support"
OFF
)
# automatically use ccache if found
...
...
@@ -43,6 +44,13 @@ if(ENABLE_GOLD)
endif
()
endif
()
# pyston self host mode
if
(
ENABLE_SELF_HOST
)
set
(
PYTHON_EXE
"pyston"
)
else
()
find_program
(
PYTHON_EXE python
)
endif
()
# initial clang flags (set here so they're used when building llvm)
set
(
CLANG_FLAGS
"-Qunused-arguments -fcolor-diagnostics"
CACHE STRING
"Clang specific C and CXX flags"
)
if
(
"
${
CMAKE_C_COMPILER_ID
}
"
STREQUAL
"Clang"
)
...
...
@@ -134,8 +142,8 @@ find_package(LibLZMA REQUIRED)
link_directories
(
${
CMAKE_BINARY_DIR
}
/libunwind/lib
)
link_directories
(
${
LLVM_LIBRARY_DIRS
}
)
add_subdirectory
(
lib_python
)
add_subdirectory
(
lib_pyston
)
add_subdirectory
(
lib_python
)
add_subdirectory
(
src
)
add_subdirectory
(
test/test_extension
)
add_subdirectory
(
test/unittests
)
...
...
@@ -146,7 +154,6 @@ add_executable(pyston $<TARGET_OBJECTS:PYSTON_MAIN_OBJECT> $<TARGET_OBJECTS:PYST
target_link_libraries
(
pyston -Wl,--whole-archive stdlib -Wl,--no-whole-archive pthread m readline gmp unwind pypa double-conversion
${
LLVM_LIBS
}
${
LIBLZMA_LIBRARIES
}
)
# copy the python standard library (lib_python/2.7) and src/codegen/parse_ast.py to the build directory
add_custom_command
(
TARGET pyston POST_BUILD COMMAND
${
CMAKE_COMMAND
}
-E copy_directory
${
CMAKE_SOURCE_DIR
}
/lib_python/2.7
${
CMAKE_BINARY_DIR
}
/lib_python/2.7
)
add_custom_command
(
TARGET pyston POST_BUILD COMMAND
${
CMAKE_COMMAND
}
-E copy_if_different
${
CMAKE_SOURCE_DIR
}
/src/codegen/parse_ast.py
${
CMAKE_BINARY_DIR
}
/src/codegen/parse_ast.py
)
add_custom_target
(
astcompare COMMAND
${
CMAKE_SOURCE_DIR
}
/tools/astprint_test.sh
...
...
@@ -155,13 +162,15 @@ add_custom_target(astcompare COMMAND ${CMAKE_SOURCE_DIR}/tools/astprint_test.sh
# test
enable_testing
()
add_test
(
NAME lint COMMAND python
${
CMAKE_SOURCE_DIR
}
/tools/lint.py WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
/src
)
set
(
TEST_THREADS 1
)
add_test
(
NAME lint COMMAND
${
PYTHON_EXE
}
${
CMAKE_SOURCE_DIR
}
/tools/lint.py WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
/src
)
add_test
(
NAME check-format COMMAND
${
CMAKE_SOURCE_DIR
}
/tools/check_format.sh
${
LLVM_TOOLS_BINARY_DIR
}
/clang-format WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
/src
)
add_test
(
NAME gc_unittest COMMAND gc_unittest
)
add_test
(
NAME analysis_unittest COMMAND analysis_unittest
)
add_test
(
NAME pyston_defaults COMMAND
python
${
CMAKE_SOURCE_DIR
}
/tools/tester.py -R ./pyston -j4
-k
${
CMAKE_SOURCE_DIR
}
/test/tests
)
add_test
(
NAME pyston_max_compilation_tier COMMAND
python
${
CMAKE_SOURCE_DIR
}
/tools/tester.py -R ./pyston -j4
-a -O -k
${
CMAKE_SOURCE_DIR
}
/test/tests
)
add_test
(
NAME pyston_experimental_pypa_parser COMMAND
python
${
CMAKE_SOURCE_DIR
}
/tools/tester.py -a -x -R ./pyston -j4
-a -n -k
${
CMAKE_SOURCE_DIR
}
/test/tests
)
add_test
(
NAME pyston_defaults COMMAND
${
PYTHON_EXE
}
${
CMAKE_SOURCE_DIR
}
/tools/tester.py -R ./pyston -j
${
TEST_THREADS
}
-k
${
CMAKE_SOURCE_DIR
}
/test/tests
)
add_test
(
NAME pyston_max_compilation_tier COMMAND
${
PYTHON_EXE
}
${
CMAKE_SOURCE_DIR
}
/tools/tester.py -R ./pyston -j
${
TEST_THREADS
}
-a -O -k
${
CMAKE_SOURCE_DIR
}
/test/tests
)
add_test
(
NAME pyston_experimental_pypa_parser COMMAND
${
PYTHON_EXE
}
${
CMAKE_SOURCE_DIR
}
/tools/tester.py -a -x -R ./pyston -j
${
TEST_THREADS
}
-a -n -k
${
CMAKE_SOURCE_DIR
}
/test/tests
)
# format
file
(
GLOB_RECURSE FORMAT_FILES
${
CMAKE_SOURCE_DIR
}
/src/*.h
${
CMAKE_SOURCE_DIR
}
/src/*.cpp
)
...
...
@@ -169,10 +178,10 @@ add_custom_target(format ${LLVM_TOOLS_BINARY_DIR}/clang-format -style=file -i ${
add_custom_target
(
check-format
${
CMAKE_SOURCE_DIR
}
/tools/check_format.sh
${
LLVM_TOOLS_BINARY_DIR
}
/clang-format DEPENDS clang-format WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
/src
)
# lint
add_custom_target
(
lint
python
${
CMAKE_SOURCE_DIR
}
/tools/lint.py WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
/src
)
add_custom_target
(
lint
${
PYTHON_EXE
}
${
CMAKE_SOURCE_DIR
}
/tools/lint.py WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
/src
)
# check
add_custom_target
(
check-pyston COMMAND
${
CMAKE_CTEST_COMMAND
}
--output-on-failure DEPENDS pyston clang-format ext_cpython ext_pyston unittests
)
add_custom_target
(
check-pyston COMMAND
${
CMAKE_CTEST_COMMAND
}
--output-on-failure DEPENDS pyston c
opy_stdlib copy_libpyston c
lang-format ext_cpython ext_pyston unittests
)
# {run,dbg,perf,memcheck,memleaks,cachegrind}_TESTNAME
file
(
GLOB RUNTARGETS
${
CMAKE_SOURCE_DIR
}
/test/tests/*.py
${
CMAKE_SOURCE_DIR
}
/microbenchmarks/*.py
${
CMAKE_SOURCE_DIR
}
/minibenchmarks/*.py
)
...
...
lib_pyston/CMakeLists.txt
View file @
e7322473
# Copy any changed lib_pyston sources:
file
(
GLOB_RECURSE LIBPYSTON_SRCS .
"*.py"
)
SET
(
LIBPYSTON_TARGETS
""
)
set
(
LIBPYSTON_TARGETS
""
)
foreach
(
STDLIB_FILE
${
LIBPYSTON_SRCS
}
)
file
(
RELATIVE_PATH FN_REL
${
CMAKE_SOURCE_DIR
}
${
STDLIB_FILE
}
)
set
(
TARGET
${
CMAKE_BINARY_DIR
}
/
${
FN_REL
}
)
...
...
@@ -10,7 +10,6 @@ foreach(STDLIB_FILE ${LIBPYSTON_SRCS})
DEPENDS
${
STDLIB_FILE
}
COMMENT
"Copying
${
FN_REL
}
"
)
set
(
LIBPYSTON_TARGETS
${
LIBPYSTON_TARGETS
}
${
TARGET
}
)
set
(
LIBPYSTON_TARGETS
${
LIBPYSTON_TARGETS
}
${
TARGET
}
)
endforeach
(
STDLIB_FILE
)
add_custom_target
(
copy_libpyston ALL DEPENDS
${
LIBPYSTON_TARGETS
}
)
lib_python/CMakeLists.txt
View file @
e7322473
# Copy any changed stdlib files to the destination:
file
(
GLOB_RECURSE STDLIB_SRCS 2.7/
"*.py"
)
SET
(
STDLIB_TARGETS
""
)
set
(
STDLIB_TARGETS
""
)
foreach
(
STDLIB_FILE
${
STDLIB_SRCS
}
)
file
(
RELATIVE_PATH FN_REL
${
CMAKE_SOURCE_DIR
}
${
STDLIB_FILE
}
)
set
(
TARGET
${
CMAKE_BINARY_DIR
}
/
${
FN_REL
}
)
...
...
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