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
85a2ff99
Commit
85a2ff99
authored
May 07, 2015
by
Daniel Agar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake check for system headers
parent
eed68d75
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
112 additions
and
56 deletions
+112
-56
CMakeLists.txt
CMakeLists.txt
+1
-8
cmake/pyconfig.cmake
cmake/pyconfig.cmake
+62
-0
from_cpython/Include/pyconfig.h.in
from_cpython/Include/pyconfig.h.in
+49
-48
No files found.
CMakeLists.txt
View file @
85a2ff99
...
...
@@ -3,8 +3,7 @@ project(pyston C CXX ASM)
set
(
CMAKE_MODULE_PATH
${
CMAKE_SOURCE_DIR
}
/cmake
)
include
(
CheckIncludeFiles
)
include
(
CheckTypeSizeof
)
include
(
pyconfig
)
include
(
ExternalProject
)
set
(
DEPS_DIR $ENV{HOME}/pyston_deps
)
...
...
@@ -163,12 +162,6 @@ add_definitions(-DLLVMREV=${LLVMREV})
include_directories
(
${
CMAKE_BINARY_DIR
}
/from_cpython/Include
)
include_directories
(
${
LLVM_INCLUDE_DIRS
}
)
# generate pyconfig.h
set
(
CMAKE_EXTRA_INCLUDE_FILES unordered_map
)
check_type_sizeof
(
"std::unordered_map<void*, void*>"
SIZEOF_UNORDEREDMAP LANGUAGE CXX
)
check_include_files
(
stropts.h HAVE_STROPTS_H
)
configure_file
(
from_cpython/Include/pyconfig.h.in from_cpython/Include/pyconfig.h
)
find_package
(
LibLZMA REQUIRED
)
link_directories
(
${
CMAKE_BINARY_DIR
}
/libunwind/lib
)
link_directories
(
${
LLVM_LIBRARY_DIRS
}
)
...
...
cmake/pyconfig.cmake
0 → 100644
View file @
85a2ff99
# generate pyconfig.h
include
(
CheckIncludeFiles
)
include
(
CheckTypeSizeof
)
set
(
CMAKE_EXTRA_INCLUDE_FILES unordered_map
)
set
(
CMAKE_REQUIRED_FLAGS -std=c++11
)
check_type_sizeof
(
"std::unordered_map<void*, void*>"
SIZEOF_UNORDEREDMAP LANGUAGE CXX
)
set
(
CMAKE_EXTRA_INCLUDE_FILES
)
set
(
CMAKE_REQUIRED_FLAGS
)
check_include_files
(
alloca.h HAVE_ALLOCA_H
)
check_include_files
(
asm/types.h HAVE_ASM_TYPES_H
)
check_include_files
(
curses.h HAVE_CURSES_H
)
check_include_files
(
dirent.h HAVE_DIRENT_H
)
check_include_files
(
dlfcn.h HAVE_DLFCN_H
)
check_include_files
(
errno.h HAVE_ERRNO_H
)
check_include_files
(
fcntl.h HAVE_FCNTL_H
)
check_include_files
(
grp.h HAVE_GRP_H
)
check_include_files
(
inttypes.h HAVE_INTTYPES_H
)
check_include_files
(
langinfo.h HAVE_LANGINFO_H
)
check_include_files
(
libintl.h HAVE_LIBINTL_H
)
check_include_files
(
libutil.h HAVE_LIBUTIL_H
)
check_include_files
(
linux/netlink.h HAVE_LINUX_NETLINK_H
)
check_include_files
(
linux/tipc.h HAVE_LINUX_TIPC_H
)
check_include_files
(
memory.h HAVE_MEMORY_H
)
check_include_files
(
ncurses.h HAVE_NCURSES_H
)
check_include_files
(
netpacket/packet.h HAVE_NETPACKET_PACKET_H
)
check_include_files
(
poll.h HAVE_POLL_H
)
check_include_files
(
pthread.h HAVE_PTHREAD_H
)
check_include_files
(
pty.h HAVE_PTY_H
)
check_include_files
(
shadow.h HAVE_SHADOW_H
)
check_include_files
(
signal.h HAVE_SIGNAL_H
)
check_include_files
(
spawn.h HAVE_SPAWN_H
)
check_include_files
(
stdint.h HAVE_STDINT_H
)
check_include_files
(
stdlib.h HAVE_STDLIB_H
)
check_include_files
(
string.h HAVE_STRING_H
)
check_include_files
(
strings.h HAVE_STRINGS_H
)
check_include_files
(
stropts.h HAVE_STROPTS_H
)
check_include_files
(
stropts.h HAVE_STROPTS_H
)
check_include_files
(
sys/epoll.h HAVE_SYS_EPOLL_H
)
check_include_files
(
sys/file.h HAVE_SYS_FILE_H
)
check_include_files
(
sys/param.h HAVE_SYS_PARAM_H
)
check_include_files
(
sys/poll.h HAVE_SYS_POLL_H
)
check_include_files
(
sys/resource.h HAVE_SYS_RESOURCE_H
)
check_include_files
(
sys/select.h HAVE_SYS_SELECT_H
)
check_include_files
(
sys/socket.h HAVE_SYS_SOCKET_H
)
check_include_files
(
sys/stat.h HAVE_SYS_STAT_H
)
check_include_files
(
sys/statvfs.h HAVE_SYS_STATVFS_H
)
check_include_files
(
sys/times.h HAVE_SYS_TIMES_H
)
check_include_files
(
sys/types.h HAVE_SYS_TYPES_H
)
check_include_files
(
sys/un.h HAVE_SYS_UN_H
)
check_include_files
(
sys/utsname.h HAVE_SYS_UTSNAME_H
)
check_include_files
(
sys/wait.h HAVE_SYS_WAIT_H
)
check_include_files
(
sysexits.h HAVE_SYSEXITS_H
)
check_include_files
(
term.h HAVE_TERM_H
)
check_include_files
(
termios.h HAVE_TERMIOS_H
)
check_include_files
(
unistd.h HAVE_UNISTD_H
)
check_include_files
(
utime.h HAVE_UTIME_H
)
check_include_files
(
wchar.h HAVE_WCHAR_H
)
configure_file
(
from_cpython/Include/pyconfig.h.in from_cpython/Include/pyconfig.h
)
from_cpython/Include/pyconfig.h.in
View file @
85a2ff99
...
...
@@ -77,60 +77,61 @@
#define HAVE_WAIT4 1
#define HAVE_WAITPID 1
#define HAVE_ALLOCA_H 1
#define HAVE_ASM_TYPES_H 1
#define HAVE_CLOCK 1
#define HAVE_CURSES_H 1
#define HAVE_DIRENT_H 1
#define HAVE_DLFCN_H 1
#define HAVE_ERRNO_H 1
#define HAVE_FCNTL_H 1
#define HAVE_FTIME 1
#define HAVE_GRP_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LANGINFO_H 1
#define HAVE_LIBINTL_H 1
#define HAVE_LIBUTIL_H 1
#define HAVE_LINUX_NETLINK_H 1
#define HAVE_LINUX_TIPC_H 1
#define HAVE_MEMORY_H 1
#define HAVE_NCURSES_H 1
#define HAVE_NETPACKET_PACKET_H 1
#define HAVE_POLL_H 1
#define HAVE_PTHREAD_H 1
#define HAVE_PTY_H 1
#define HAVE_PUTENV 1
#define HAVE_READLINK 1
#define HAVE_SETVBUF 1
#define HAVE_SHADOW_H 1
#define HAVE_SIGNAL_H 1
#define HAVE_SPAWN_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_SYSEXITS_H 1
#define HAVE_SYS_EPOLL_H 1
#define HAVE_SYS_FILE_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_POLL_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UN_H 1
#define HAVE_SYS_UTSNAME_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_TERM_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UTIME_H 1
#define HAVE_WCHAR_H 1
#define HAVE_WORKING_TZSET 1
#define HAVE_PUTENV 1
#cmakedefine HAVE_ALLOCA_H 1
#cmakedefine HAVE_ASM_TYPES_H 1
#cmakedefine HAVE_CURSES_H 1
#cmakedefine HAVE_DIRENT_H 1
#cmakedefine HAVE_DLFCN_H 1
#cmakedefine HAVE_ERRNO_H 1
#cmakedefine HAVE_FCNTL_H 1
#cmakedefine HAVE_GRP_H 1
#cmakedefine HAVE_INTTYPES_H 1
#cmakedefine HAVE_LANGINFO_H 1
#cmakedefine HAVE_LIBINTL_H 1
#cmakedefine HAVE_LIBUTIL_H 1
#cmakedefine HAVE_LINUX_NETLINK_H 1
#cmakedefine HAVE_LINUX_TIPC_H 1
#cmakedefine HAVE_MEMORY_H 1
#cmakedefine HAVE_NCURSES_H 1
#cmakedefine HAVE_NETPACKET_PACKET_H 1
#cmakedefine HAVE_POLL_H 1
#cmakedefine HAVE_PTHREAD_H 1
#cmakedefine HAVE_PTY_H 1
#cmakedefine HAVE_SHADOW_H 1
#cmakedefine HAVE_SIGNAL_H 1
#cmakedefine HAVE_SPAWN_H 1
#cmakedefine HAVE_STDINT_H 1
#cmakedefine HAVE_STDLIB_H 1
#cmakedefine HAVE_STRING_H 1
#cmakedefine HAVE_STRINGS_H 1
#cmakedefine HAVE_STROPTS_H 1
#cmakedefine HAVE_SYS_EPOLL_H 1
#cmakedefine HAVE_SYS_FILE_H 1
#cmakedefine HAVE_SYS_PARAM_H 1
#cmakedefine HAVE_SYS_POLL_H 1
#cmakedefine HAVE_SYS_RESOURCE_H 1
#cmakedefine HAVE_SYS_SELECT_H 1
#cmakedefine HAVE_SYS_SOCKET_H 1
#cmakedefine HAVE_SYS_STAT_H 1
#cmakedefine HAVE_SYS_STATVFS_H 1
#cmakedefine HAVE_SYS_TIMES_H 1
#cmakedefine HAVE_SYS_TYPES_H 1
#cmakedefine HAVE_SYS_UN_H 1
#cmakedefine HAVE_SYS_UTSNAME_H 1
#cmakedefine HAVE_SYS_WAIT_H 1
#cmakedefine HAVE_SYSEXITS_H 1
#cmakedefine HAVE_TERM_H 1
#cmakedefine HAVE_TERMIOS_H 1
#cmakedefine HAVE_UNISTD_H 1
#cmakedefine HAVE_UTIME_H 1
#cmakedefine HAVE_WCHAR_H 1
// Added this for some Pyston modifications:
#define MAX_PYSTRING_SIZE (PY_SSIZE_T_MAX/2 - (1<<20))
...
...
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