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
f0450c2a
Commit
f0450c2a
authored
Aug 05, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Readd submodules in build_deps
parent
3b3bf126
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
38 additions
and
20 deletions
+38
-20
.gitmodules
.gitmodules
+13
-0
CMakeLists.txt
CMakeLists.txt
+16
-16
build_deps/jemalloc
build_deps/jemalloc
+1
-0
build_deps/libpypa
build_deps/libpypa
+1
-0
build_deps/libunwind
build_deps/libunwind
+1
-0
build_deps/lz4
build_deps/lz4
+1
-0
docs/INSTALLING.md
docs/INSTALLING.md
+2
-1
src/CMakeLists.txt
src/CMakeLists.txt
+3
-3
No files found.
.gitmodules
View file @
f0450c2a
...
...
@@ -18,3 +18,16 @@
path = test/integration/pyxl
url = https://github.com/dropbox/pyxl.git
ignore = untracked
[submodule "build_deps/libunwind"]
path = build_deps/libunwind
url = git://git.sv.gnu.org/libunwind.git
ignore = all
[submodule "build_deps/libpypa"]
path = build_deps/libpypa
url = git://github.com/vinzenz/libpypa.git
[submodule "build_deps/lz4"]
path = build_deps/lz4
url = git://github.com/Cyan4973/lz4.git
[submodule "build_deps/jemalloc"]
path = build_deps/jemalloc
url = git://github.com/jemalloc/jemalloc.git
CMakeLists.txt
View file @
f0450c2a
...
...
@@ -113,10 +113,10 @@ add_custom_target(gitsubmodules DEPENDS ${CMAKE_BINARY_DIR}/gitmodules)
# jemalloc
ExternalProject_Add
(
libjemalloc
PREFIX jemalloc-build
SOURCE_DIR
${
CMAKE_SOURCE_DIR
}
/jemalloc
SOURCE_DIR
${
CMAKE_SOURCE_DIR
}
/
build_deps/
jemalloc
DEPENDS gitsubmodules
UPDATE_COMMAND autoconf
CONFIGURE_COMMAND
${
CMAKE_SOURCE_DIR
}
/jemalloc/configure --prefix=
${
CMAKE_BINARY_DIR
}
/jemalloc --enable-autogen --enable-prof-libunwind
CONFIGURE_COMMAND
${
CMAKE_SOURCE_DIR
}
/
build_deps/
jemalloc/configure --prefix=
${
CMAKE_BINARY_DIR
}
/jemalloc --enable-autogen --enable-prof-libunwind
INSTALL_COMMAND make install_bin install_lib
LOG_UPDATE ON
LOG_CONFIGURE ON
...
...
@@ -137,13 +137,13 @@ set(LIBUNWIND_PATCHES
${
CMAKE_SOURCE_DIR
}
/libunwind_patches/9999-is-patched-marker.patch
)
add_custom_command
(
OUTPUT
${
CMAKE_SOURCE_DIR
}
/libunwind/pyston_patched
COMMAND git submodule update libunwind
COMMAND python
${
CMAKE_SOURCE_DIR
}
/tools/git_am_automated.py libunwind
${
LIBUNWIND_PATCHES
}
add_custom_command
(
OUTPUT
${
CMAKE_SOURCE_DIR
}
/
build_deps/
libunwind/pyston_patched
COMMAND git submodule update
build_deps/
libunwind
COMMAND python
${
CMAKE_SOURCE_DIR
}
/tools/git_am_automated.py
build_deps/
libunwind
${
LIBUNWIND_PATCHES
}
WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
DEPENDS
${
LIBUNWIND_PATCHES
}
DEPENDS gitsubmodules
)
add_custom_target
(
libunwind_patched DEPENDS
${
CMAKE_SOURCE_DIR
}
/libunwind/pyston_patched
)
add_custom_target
(
libunwind_patched DEPENDS
${
CMAKE_SOURCE_DIR
}
/
build_deps/
libunwind/pyston_patched
)
# llvm
set
(
LLVM_TARGETS_TO_BUILD
"host"
CACHE STRING
"LLVM targets"
)
...
...
@@ -168,18 +168,18 @@ else()
set
(
LIBUNWIND_CONSERVATIVE_CHECKS
"--disable-conservative-checks"
)
endif
()
ExternalProject_Add
(
libunwind
PREFIX libunwind
SOURCE_DIR
${
CMAKE_SOURCE_DIR
}
/libunwind
PREFIX
build_deps/
libunwind
SOURCE_DIR
${
CMAKE_SOURCE_DIR
}
/
build_deps/
libunwind
DEPENDS libunwind_patched
UPDATE_COMMAND autoreconf -i
CONFIGURE_COMMAND
${
CMAKE_SOURCE_DIR
}
/
libunwind/configure
${
LIBUNWIND_DEBUG_CFLAGS
}
--prefix=
${
CMAKE_BINARY_DIR
}
/libunwind --enable-shared=0 --disable-block-signals
${
LIBUNWIND_CONSERVATIVE_CHECKS
}
${
LIBUNWIND_DEBUG
}
${
LIBUNWIND_DEBUG_FRAME
}
CONFIGURE_COMMAND
${
CMAKE_SOURCE_DIR
}
/
build_deps/libunwind/configure
${
LIBUNWIND_DEBUG_CFLAGS
}
--prefix=
${
CMAKE_BINARY_DIR
}
/build_deps
/libunwind --enable-shared=0 --disable-block-signals
${
LIBUNWIND_CONSERVATIVE_CHECKS
}
${
LIBUNWIND_DEBUG
}
${
LIBUNWIND_DEBUG_FRAME
}
LOG_UPDATE ON
LOG_CONFIGURE ON
LOG_BUILD ON
LOG_INSTALL ON
)
# Tell CMake that patching libunwind means that we need to rebuild it:
ExternalProject_Add_Step
(
libunwind forcebuild
DEPENDS
${
CMAKE_SOURCE_DIR
}
/libunwind/pyston_patched
DEPENDS
${
CMAKE_SOURCE_DIR
}
/
build_deps/
libunwind/pyston_patched
DEPENDERS build
)
# Tell CMake that rebuilding libunwind will touch the build files (why doesn't it know this??)
...
...
@@ -187,15 +187,15 @@ ExternalProject_Add_Step(libunwind forcebuild
# it will take another build to realize that any source files that #include libunwind.h
# need to get rebuilt.
SET_SOURCE_FILES_PROPERTIES
(
${
CMAKE_BINARY_DIR
}
/
libunwind/include/libunwind.h PROPERTIES OBJECT_DEPENDS
${
CMAKE_SOURCE_DIR
}
/libunwind/pyston_patched
${
CMAKE_BINARY_DIR
}
/
build_deps/libunwind/include/libunwind.h PROPERTIES OBJECT_DEPENDS
${
CMAKE_SOURCE_DIR
}
/build_deps
/libunwind/pyston_patched
)
# libpypa
add_subdirectory
(
libpypa EXCLUDE_FROM_ALL
)
add_subdirectory
(
build_deps/
libpypa EXCLUDE_FROM_ALL
)
add_dependencies
(
pypa gitsubmodules
)
# lz4
add_subdirectory
(
lz4/cmake_unofficial EXCLUDE_FROM_ALL
)
add_subdirectory
(
build_deps/
lz4/cmake_unofficial EXCLUDE_FROM_ALL
)
add_dependencies
(
lz4 gitsubmodules
)
# valgrind
...
...
@@ -242,7 +242,7 @@ include_directories(${CMAKE_BINARY_DIR}/from_cpython/Include)
include_directories
(
${
LLVM_INCLUDE_DIRS
}
)
find_package
(
LibLZMA REQUIRED
)
link_directories
(
${
CMAKE_BINARY_DIR
}
/libunwind/lib
)
link_directories
(
${
CMAKE_BINARY_DIR
}
/
build_deps/
libunwind/lib
)
link_directories
(
${
LLVM_LIBRARY_DIRS
}
)
ADD_PROFILE_FLAGS
()
...
...
@@ -291,9 +291,9 @@ if(${CMAKE_BUILD_TYPE} STREQUAL "Release")
add_pyston_test
(
max_compilation_tier tests -a=-O -a=-x -t50
)
endif
()
add_pyston_test
(
defaults cpython --exit-code-only --skip-failing -t50
)
add_pyston_test
(
defaults integration --exit-code-only --skip-failing -t600
)
add_pyston_test
(
defaults
testsuite/
integration --exit-code-only --skip-failing -t600
)
if
(
ENABLE_EXTRA_TESTS
)
add_pyston_test
(
defaults extra -t600 --exit-code-only
)
add_pyston_test
(
defaults
testsuite/
extra -t600 --exit-code-only
)
endif
()
...
...
jemalloc
@
46c0af68
Subproject commit 46c0af68bd248b04df75e4f92d5fb804c3d75340
libpypa
@
64158555
Subproject commit 641585556b4fec9d6efced9813b45ae72055db7a
libunwind
@
65ac8674
Subproject commit 65ac86741606e1d87aef75755c699e4fa6884230
lz4
@
160661c7
Subproject commit 160661c7a4cbf805f4af74d2e3932a17a66e6ce7
docs/INSTALLING.md
View file @
f0450c2a
...
...
@@ -30,7 +30,7 @@ sudo yum install cmake clang gcc gcc-c++ ccache ninja-build xz-devel automake li
### Building and testing
```
git clone
--recursive
https://github.com/dropbox/pyston.git ~/pyston
git clone https://github.com/dropbox/pyston.git ~/pyston
git clone git://github.com/llvm-mirror/llvm.git ~/pyston_deps/llvm-trunk
git clone git://github.com/llvm-mirror/clang.git ~/pyston_deps/llvm-trunk/tools/clang
...
...
@@ -39,6 +39,7 @@ git config --global user.email "you@example.com"
git config --global user.name "Your Name"
cd ~/pyston
git submodule update --init --recursive build_deps
make llvm_up
make
make check
...
...
src/CMakeLists.txt
View file @
f0450c2a
...
...
@@ -6,9 +6,9 @@ execute_process(COMMAND git rev-parse HEAD WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
set_source_files_properties
(
jit.cpp PROPERTIES COMPILE_DEFINITIONS
"GITREV=
${
GITREV
}
"
)
include_directories
(
${
CMAKE_BINARY_DIR
}
)
include_directories
(
${
CMAKE_BINARY_DIR
}
/libunwind/include
)
include_directories
(
${
CMAKE_SOURCE_DIR
}
/libpypa/src
)
include_directories
(
${
CMAKE_SOURCE_DIR
}
/lz4/lib
)
include_directories
(
${
CMAKE_BINARY_DIR
}
/
build_deps/
libunwind/include
)
include_directories
(
${
CMAKE_SOURCE_DIR
}
/
build_deps/
libpypa/src
)
include_directories
(
${
CMAKE_SOURCE_DIR
}
/
build_deps/
lz4/lib
)
if
(
ENABLE_GPERFTOOLS
)
set
(
OPTIONAL_SRCS
${
OPTIONAL_SRCS
}
codegen/profiling/pprof.cpp
)
...
...
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