Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
73368ff5
Commit
73368ff5
authored
Apr 09, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
support profiling of Cython binary modules when passing --cython-profile to setup.py
parent
e1d01bec
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
setup.py
setup.py
+13
-2
No files found.
setup.py
View file @
73368ff5
...
@@ -85,7 +85,7 @@ else:
...
@@ -85,7 +85,7 @@ else:
else
:
else
:
scripts
=
[
"cython.py"
]
scripts
=
[
"cython.py"
]
def
compile_cython_modules
():
def
compile_cython_modules
(
profile
=
False
):
source_root
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
source_root
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
compiled_modules
=
[
"Cython.Plex.Scanners"
,
compiled_modules
=
[
"Cython.Plex.Scanners"
,
"Cython.Compiler.Scanning"
,
"Cython.Compiler.Scanning"
,
...
@@ -116,6 +116,10 @@ def compile_cython_modules():
...
@@ -116,6 +116,10 @@ def compile_cython_modules():
del
sys
.
modules
[
module
]
del
sys
.
modules
[
module
]
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
source_root
,
self
.
build_lib
))
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
source_root
,
self
.
build_lib
))
if
profile
:
from
Cython.Compiler.Options
import
directive_defaults
directive_defaults
[
'profile'
]
=
True
print
(
"Enabled profiling for the Cython binary modules"
)
build_ext_orig
.
build_extensions
(
self
)
build_ext_orig
.
build_extensions
(
self
)
setup_args
[
'ext_modules'
]
=
extensions
setup_args
[
'ext_modules'
]
=
extensions
...
@@ -132,6 +136,10 @@ def compile_cython_modules():
...
@@ -132,6 +136,10 @@ def compile_cython_modules():
print
(
"Compilation of '%s' failed"
%
ext
.
sources
[
0
])
print
(
"Compilation of '%s' failed"
%
ext
.
sources
[
0
])
from
Cython.Compiler.Main
import
compile
from
Cython.Compiler.Main
import
compile
from
Cython
import
Utils
from
Cython
import
Utils
if
profile
:
from
Cython.Compiler.Options
import
directive_defaults
directive_defaults
[
'profile'
]
=
True
print
(
"Enabled profiling for the Cython binary modules"
)
source_root
=
os
.
path
.
dirname
(
__file__
)
source_root
=
os
.
path
.
dirname
(
__file__
)
for
module
in
compiled_modules
:
for
module
in
compiled_modules
:
source_file
=
os
.
path
.
join
(
source_root
,
*
module
.
split
(
'.'
))
source_file
=
os
.
path
.
join
(
source_root
,
*
module
.
split
(
'.'
))
...
@@ -162,7 +170,10 @@ def compile_cython_modules():
...
@@ -162,7 +170,10 @@ def compile_cython_modules():
try
:
try
:
sys
.
argv
.
remove
(
"--no-cython-compile"
)
sys
.
argv
.
remove
(
"--no-cython-compile"
)
except
ValueError
:
except
ValueError
:
compile_cython_modules
()
cython_profile
=
'--cython-profile'
in
sys
.
argv
if
cython_profile
:
sys
.
argv
.
remove
(
'--cython-profile'
)
compile_cython_modules
(
cython_profile
)
setup_args
.
update
(
setuptools_extra_args
)
setup_args
.
update
(
setuptools_extra_args
)
...
...
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