Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OBITools3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
21
Issues
21
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
OBITools
OBITools3
Commits
25da08f4
Commit
25da08f4
authored
May 26, 2015
by
Eric Coissac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch few bugs in obidistutils
parent
50c60404
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
distutils.ext/obidistutils/command/build_ext.py
distutils.ext/obidistutils/command/build_ext.py
+1
-1
distutils.ext/obidistutils/core.py
distutils.ext/obidistutils/core.py
+2
-2
No files found.
distutils.ext/obidistutils/command/build_ext.py
View file @
25da08f4
...
...
@@ -13,7 +13,7 @@ from distutils.errors import DistutilsSetupError
class
build_ext
(
ori_build_ext
):
def
modifyDocScripts
(
self
):
build_dir_file
=
open
(
"doc/
sphinx/
build_dir.txt"
,
"w"
)
build_dir_file
=
open
(
"doc/build_dir.txt"
,
"w"
)
print
(
self
.
build_lib
,
file
=
build_dir_file
)
build_dir_file
.
close
()
...
...
distutils.ext/obidistutils/core.py
View file @
25da08f4
...
...
@@ -62,7 +62,7 @@ def findCython(root,base=None,pyrexs=None):
cfiles
=
[
x
for
x
in
cfiles
if
x
[
-
2
:]
==
".c"
]
pyrexs
[
-
1
].
sources
.
extend
(
cfiles
)
pyrexs
[
-
1
].
include_dirs
.
extend
(
incdir
)
pyrexs
[
-
1
].
extra_compile_args
.
extend
([
'-msse2'
])
pyrexs
[
-
1
].
extra_compile_args
.
extend
([
'-msse2'
,
'-Wno-unused-function'
])
except
IOError
:
pass
...
...
@@ -80,7 +80,7 @@ def prepare_commands():
from
obidistutils.command.littlebigman
import
littlebigman
from
obidistutils.command.build_cexe
import
build_cexe
from
obidistutils.command.build_sphinx
import
build_sphinx
from
obidistutils.command
import
build_ext
from
obidistutils.command
.build_ext
import
build_ext
from
obidistutils.command.build_ctools
import
build_ctools
from
obidistutils.command.build_files
import
build_files
from
obidistutils.command.build_scripts
import
build_scripts
...
...
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