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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
f56f402d
Commit
f56f402d
authored
7 years ago
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make CYTHON_SMALL_CODE macro work with g++.
parent
74173e2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+3
-3
No files found.
Cython/Compiler/ModuleNode.py
View file @
f56f402d
...
@@ -2280,10 +2280,10 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
...
@@ -2280,10 +2280,10 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
header3
=
"__Pyx_PyMODINIT_FUNC %s(void)"
%
self
.
mod_init_func_cname
(
'PyInit'
,
env
)
header3
=
"__Pyx_PyMODINIT_FUNC %s(void)"
%
self
.
mod_init_func_cname
(
'PyInit'
,
env
)
code
.
putln
(
"#if PY_MAJOR_VERSION < 3"
)
code
.
putln
(
"#if PY_MAJOR_VERSION < 3"
)
# Optimise for small code size as the module init function is only executed once.
# Optimise for small code size as the module init function is only executed once.
code
.
putln
(
"
CYTHON_SMALL_CODE %s
; /*proto*/"
%
header2
)
code
.
putln
(
"
%s CYTHON_SMALL_CODE
; /*proto*/"
%
header2
)
code
.
putln
(
header2
)
code
.
putln
(
header2
)
code
.
putln
(
"#else"
)
code
.
putln
(
"#else"
)
code
.
putln
(
"
CYTHON_SMALL_CODE %s
; /*proto*/"
%
header3
)
code
.
putln
(
"
%s CYTHON_SMALL_CODE
; /*proto*/"
%
header3
)
code
.
putln
(
header3
)
code
.
putln
(
header3
)
# CPython 3.5+ supports multi-phase module initialisation (gives access to __spec__, __file__, etc.)
# CPython 3.5+ supports multi-phase module initialisation (gives access to __spec__, __file__, etc.)
...
@@ -2297,7 +2297,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
...
@@ -2297,7 +2297,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
putln
(
""
)
code
.
putln
(
""
)
# main module init code lives in Py_mod_exec function, not in PyInit function
# main module init code lives in Py_mod_exec function, not in PyInit function
code
.
putln
(
"
CYTHON_SMALL_CODE static int %s(PyObject *%s)
"
%
(
code
.
putln
(
"
static int %s(PyObject *%s) CYTHON_SMALL_CODE
"
%
(
self
.
mod_init_func_cname
(
Naming
.
pymodule_exec_func_cname
,
env
),
self
.
mod_init_func_cname
(
Naming
.
pymodule_exec_func_cname
,
env
),
Naming
.
pymodinit_module_arg
))
Naming
.
pymodinit_module_arg
))
code
.
putln
(
"#endif"
)
# PEP489
code
.
putln
(
"#endif"
)
# PEP489
...
...
This diff is collapsed.
Click to expand it.
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