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
fa9df76e
Commit
fa9df76e
authored
Jan 04, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix up this make rule
parent
189b1150
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Makefile
Makefile
+3
-3
No files found.
Makefile
View file @
fa9df76e
...
...
@@ -957,9 +957,9 @@ TEST_EXT_MODULE_NAMES := basic_test descr_test slots_test
ext_pyston
:
$(TEST_EXT_MODULE_NAMES:%=$(TEST_DIR)/test_extension/%.pyston.so)
ifneq
($(SELF_HOST),1)
$(TEST_DIR)/test_extension/%.pyston.so
:
$(TEST_DIR)/test_extension/%.o
gcc
-pthread
-shared
-Wl
,-O1
-Wl
,-Bsymbolic-functions
-Wl
,-z,relro
$<
-o
$@
-g
$(TEST_DIR)/test_extension/%.o
:
$(TEST_DIR)/test_extension/%.c $(wildcard
./i
nclude/*.h)
gcc
-pthread
-fno-strict-aliasing
-DNDEBUG
-g
-fwrapv
-O2
-Wall
-Wstrict-prototypes
-fPIC
-Wimplicit
-Ifrom_cpython
/Include
-c
$<
-o
$@
$(CC)
-pthread
-shared
-Wl
,-O1
-Wl
,-Bsymbolic-functions
-Wl
,-z,relro
$<
-o
$@
-g
$(TEST_DIR)/test_extension/%.o
:
$(TEST_DIR)/test_extension/%.c $(wildcard
from_cpython/I
nclude/*.h)
$(CC)
-pthread
$(EXT_CFLAGS)
-c
$<
-o
$@
else
# Hax: we want to generate multiple targets from a single rule, and run the rule only if the
# dependencies have been updated, and only run it once for all the targets.
...
...
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