Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
d19626f7
Commit
d19626f7
authored
Apr 24, 2003
by
Skip Montanaro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new method: has_function() - returns a boolean indicating whether the
argument function is available on the current platform
parent
8e2d2f9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
ccompiler.py
ccompiler.py
+45
-0
No files found.
ccompiler.py
View file @
d19626f7
...
@@ -883,6 +883,51 @@ class CCompiler:
...
@@ -883,6 +883,51 @@ class CCompiler:
"""
"""
raise
NotImplementedError
raise
NotImplementedError
def
has_function
(
self
,
funcname
,
includes
=
None
,
include_dirs
=
None
,
libraries
=
None
,
library_dirs
=
None
):
"""Return a boolean indicating whether funcname is supported on
the current platform. The optional arguments can be used to
augment the compilation environment.
"""
# this can't be included at module scope because it tries to
# import math which might not be available at that point - maybe
# the necessary logic should just be inlined?
import
tempfile
if
includes
is
None
:
includes
=
[]
if
include_dirs
is
None
:
include_dirs
=
[]
if
libraries
is
None
:
libraries
=
[]
if
library_dirs
is
None
:
library_dirs
=
[]
fd
,
fname
=
tempfile
.
mkstemp
(
".c"
,
funcname
,
text
=
True
)
f
=
os
.
fdopen
(
fd
,
"w"
)
for
incl
in
includes
:
f
.
write
(
"""#include "%s"
\
n
"""
%
incl
)
f
.
write
(
"""
\
main (int argc, char **argv) {
%s();
}
"""
%
funcname
)
f
.
close
()
try
:
objects
=
self
.
compile
([
fname
],
include_dirs
=
include_dirs
)
except
CompileError
:
return
False
try
:
self
.
link_executable
(
objects
,
"a.out"
,
libraries
=
libraries
,
library_dirs
=
library_dirs
)
except
(
LinkError
,
TypeError
):
return
False
return
True
def
find_library_file
(
self
,
dirs
,
lib
,
debug
=
0
):
def
find_library_file
(
self
,
dirs
,
lib
,
debug
=
0
):
"""Search the specified list of directories for a static or shared
"""Search the specified list of directories for a static or shared
library file 'lib' and return the full path to that file. If
library file 'lib' and return the full path to that file. If
...
...
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