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
44892185
Commit
44892185
authored
Apr 22, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config cleanup in BuildExecutable.py, make it executable
parent
eb2a5302
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
11 deletions
+19
-11
Cython/Build/BuildExecutable.py
Cython/Build/BuildExecutable.py
+19
-11
No files found.
Cython/Build/BuildExecutable.py
View file @
44892185
...
...
@@ -13,17 +13,22 @@ import sys
import
os
from
distutils
import
sysconfig
INCDIR
=
sysconfig
.
get_python_inc
()
LIBDIR1
=
sysconfig
.
get_config_var
(
'LIBDIR'
)
LIBDIR2
=
sysconfig
.
get_config_var
(
'LIBPL'
)
PYLIB
=
sysconfig
.
get_config_var
(
'LIBRARY'
)[
3
:
-
2
]
def
get_config_var
(
name
):
return
sysconfig
.
get_config_var
(
name
)
or
''
CC
=
sysconfig
.
get_config_var
(
'CC'
)
CFLAGS
=
sysconfig
.
get_config_var
(
'CFLAGS'
)
+
' '
+
os
.
environ
.
get
(
'CFLAGS'
,
''
)
LINKCC
=
sysconfig
.
get_config_var
(
'LINKCC'
)
LINKFORSHARED
=
sysconfig
.
get_config_var
(
'LINKFORSHARED'
)
LIBS
=
sysconfig
.
get_config_var
(
'LIBS'
)
SYSLIBS
=
sysconfig
.
get_config_var
(
'SYSLIBS'
)
INCDIR
=
sysconfig
.
get_python_inc
()
LIBDIR1
=
get_config_var
(
'LIBDIR'
)
LIBDIR2
=
get_config_var
(
'LIBPL'
)
PYLIB
=
get_config_var
(
'LIBRARY'
)
if
PYLIB
:
PYLIB
=
'-l%s'
%
PYLIB
[
3
:
-
2
]
CC
=
get_config_var
(
'CC'
)
CFLAGS
=
get_config_var
(
'CFLAGS'
)
+
' '
+
os
.
environ
.
get
(
'CFLAGS'
,
''
)
LINKCC
=
get_config_var
(
'LINKCC'
)
LINKFORSHARED
=
get_config_var
(
'LINKFORSHARED'
)
LIBS
=
get_config_var
(
'LIBS'
)
SYSLIBS
=
get_config_var
(
'SYSLIBS'
)
def
_debug
(
msg
,
*
args
):
if
DEBUG
:
...
...
@@ -61,7 +66,7 @@ def runcmd(cmd, shell=True):
sys
.
exit
(
returncode
)
def
clink
(
basename
):
runcmd
([
LINKCC
,
'-o'
,
basename
,
basename
+
'.o'
,
'-L'
+
LIBDIR1
,
'-L'
+
LIBDIR2
,
'-l'
+
PYLIB
]
runcmd
([
LINKCC
,
'-o'
,
basename
,
basename
+
'.o'
,
'-L'
+
LIBDIR1
,
'-L'
+
LIBDIR2
,
PYLIB
]
+
LIBS
.
split
()
+
SYSLIBS
.
split
()
+
LINKFORSHARED
.
split
())
def
ccompile
(
basename
):
...
...
@@ -114,3 +119,6 @@ def build_and_run(args):
program_name
=
build
(
input_file
,
cy_args
)
exec_file
(
program_name
,
args
)
if
__name__
==
'__main__'
:
build_and_run
(
sys
.
argv
[
1
:])
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