Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools_dso
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
setuptools_dso
Commits
147805e2
Commit
147805e2
authored
Oct 18, 2021
by
Michael Davidsaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanups
parent
9bfd1cad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
src/setuptools_dso/dsocmd.py
src/setuptools_dso/dsocmd.py
+0
-3
src/setuptools_dso/probe.py
src/setuptools_dso/probe.py
+1
-1
No files found.
src/setuptools_dso/dsocmd.py
View file @
147805e2
import
sys
import
os
import
platform
import
glob
from
collections
import
defaultdict
from
importlib
import
import_module
# say that three times fast...
...
...
@@ -228,7 +226,6 @@ class build_dso(dso2libmixin, Command):
self.force = None
def finalize_options(self):
from distutils import sysconfig
self.set_undefined_options('
build_ext
',
('
build_lib
', '
build_lib
'),
...
...
src/setuptools_dso/probe.py
View file @
147805e2
...
...
@@ -108,7 +108,7 @@ class ProbeToolchain(object):
try
:
self
.
compile
(
src
,
**
kws
)
return
True
except
(
DistutilsExecError
,
CompileError
)
as
e
:
except
(
DistutilsExecError
,
CompileError
):
return
False
def
check_includes
(
self
,
headers
,
**
kws
):
...
...
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