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
0bf694af
Commit
0bf694af
authored
Apr 21, 2009
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Embed flag for Cython modules
parent
7ce2a0d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
0 deletions
+31
-0
Cython/Compiler/CmdLine.py
Cython/Compiler/CmdLine.py
+4
-0
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+22
-0
Cython/Compiler/Options.py
Cython/Compiler/Options.py
+5
-0
No files found.
Cython/Compiler/CmdLine.py
View file @
0bf694af
...
@@ -38,6 +38,7 @@ Options:
...
@@ -38,6 +38,7 @@ Options:
-a, --annotate Produce a colorized HTML version of the source.
-a, --annotate Produce a colorized HTML version of the source.
--line-directives Produce #line directives pointing to the .pyx source
--line-directives Produce #line directives pointing to the .pyx source
--cplus Output a c++ rather than c file.
--cplus Output a c++ rather than c file.
--embed Embed the Python interpreter in a main() method.
--directive <name>=<value>[,<name=value,...] Overrides a compiler directive
--directive <name>=<value>[,<name=value,...] Overrides a compiler directive
"""
"""
...
@@ -72,6 +73,7 @@ def parse_command_line(args):
...
@@ -72,6 +73,7 @@ def parse_command_line(args):
options
=
CompilationOptions
(
default_options
)
options
=
CompilationOptions
(
default_options
)
sources
=
[]
sources
=
[]
while
args
:
while
args
:
print
args
if
args
[
0
].
startswith
(
"-"
):
if
args
[
0
].
startswith
(
"-"
):
option
=
pop_arg
()
option
=
pop_arg
()
if
option
in
(
"-V"
,
"--version"
):
if
option
in
(
"-V"
,
"--version"
):
...
@@ -89,6 +91,8 @@ def parse_command_line(args):
...
@@ -89,6 +91,8 @@ def parse_command_line(args):
options
.
obj_only
=
0
options
.
obj_only
=
0
elif
option
in
(
"-+"
,
"--cplus"
):
elif
option
in
(
"-+"
,
"--cplus"
):
options
.
cplus
=
1
options
.
cplus
=
1
elif
option
==
"--embed"
:
Options
.
embed
=
True
elif
option
.
startswith
(
"-I"
):
elif
option
.
startswith
(
"-I"
):
options
.
include_path
.
append
(
get_param
(
option
))
options
.
include_path
.
append
(
get_param
(
option
))
elif
option
==
"--include-dir"
:
elif
option
==
"--include-dir"
:
...
...
Cython/Compiler/ModuleNode.py
View file @
0bf694af
...
@@ -275,6 +275,8 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
...
@@ -275,6 +275,8 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
self
.
generate_module_init_func
(
modules
[:
-
1
],
env
,
code
)
self
.
generate_module_init_func
(
modules
[:
-
1
],
env
,
code
)
code
.
mark_pos
(
None
)
code
.
mark_pos
(
None
)
self
.
generate_module_cleanup_func
(
env
,
code
)
self
.
generate_module_cleanup_func
(
env
,
code
)
if
Options
.
embed
:
self
.
generate_main_method
(
env
,
code
)
self
.
generate_filename_table
(
code
)
self
.
generate_filename_table
(
code
)
self
.
generate_utility_functions
(
env
,
code
,
h_code
)
self
.
generate_utility_functions
(
env
,
code
,
h_code
)
...
@@ -1734,6 +1736,9 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
...
@@ -1734,6 +1736,9 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
putln
(
"Py_INCREF(Py_None); return Py_None;"
)
code
.
putln
(
"Py_INCREF(Py_None); return Py_None;"
)
code
.
putln
(
'}'
)
code
.
putln
(
'}'
)
def
generate_main_method
(
self
,
env
,
code
):
code
.
globalstate
.
use_utility_code
(
main_method
.
specialize
(
module_name
=
env
.
module_name
))
def
generate_filename_init_call
(
self
,
code
):
def
generate_filename_init_call
(
self
,
code
):
code
.
putln
(
"%s();"
%
Naming
.
fileinit_cname
)
code
.
putln
(
"%s();"
%
Naming
.
fileinit_cname
)
...
@@ -2442,3 +2447,20 @@ static __Pyx_RefnannyAPIStruct *__Pyx_Refnanny = NULL;
...
@@ -2442,3 +2447,20 @@ static __Pyx_RefnannyAPIStruct *__Pyx_Refnanny = NULL;
#define __Pyx_XGIVEREF(r) if((r) == NULL) ; else __Pyx_GIVEREF(r)
#define __Pyx_XGIVEREF(r) if((r) == NULL) ; else __Pyx_GIVEREF(r)
#define __Pyx_XGOTREF(r) if((r) == NULL) ; else __Pyx_GOTREF(r)
#define __Pyx_XGOTREF(r) if((r) == NULL) ; else __Pyx_GOTREF(r)
"""
)
"""
)
main_method
=
UtilityCode
(
impl
=
"""
int main(int argc, char** argv) {
int r;
Py_Initialize();
PySys_SetArgv(argc, argv);
#if PY_MAJOR_VERSION < 3
init%(module_name)s();
#else
PyInit_%(module_name)s(name);
#endif
r = PyErr_Occurred();
Py_Finalize();
return r;
}
"""
)
\ No newline at end of file
Cython/Compiler/Options.py
View file @
0bf694af
...
@@ -53,6 +53,11 @@ optimize_simple_methods = 1
...
@@ -53,6 +53,11 @@ optimize_simple_methods = 1
# Append the c file and line number to the traceback for exceptions.
# Append the c file and line number to the traceback for exceptions.
c_line_in_traceback
=
1
c_line_in_traceback
=
1
# Whether or not to embed the Python interpreter, for use in making a
# standalone executable. This will provide a main() method which simply
# executes the body of this module.
embed
=
False
# Declare pragmas
# Declare pragmas
option_defaults
=
{
option_defaults
=
{
...
...
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