Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
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
Joshua
wendelin.core
Commits
7f85b3f4
Commit
7f85b3f4
authored
Dec 17, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
5aa60bcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
setup.py
setup.py
+11
-10
No files found.
setup.py
View file @
7f85b3f4
...
...
@@ -71,7 +71,6 @@ def _with_defaults(what, *argv, **kw):
_
[
0
:
0
]
=
ccdefault
kw
[
'extra_compile_args'
]
=
_
# XXX link default: no-undefined (only for DSO)
lddefault
=
[]
# python extensions cannot be built with -Wl,--no-undefined: at runtime
# they links with either python (without libpython) or libpython. linking
...
...
@@ -262,8 +261,14 @@ setup(
'bigfile/virtmem.c'
,
'lib/bug.c'
,
'lib/utils.c'
],
define_macros
=
[(
'_GNU_SOURCE'
,
None
),
(
'BUILDING_LIBVIRTMEM'
,
None
)],
# XXX dup
language
=
'c'
)],
define_macros
=
[(
'_GNU_SOURCE'
,
None
),
(
'BUILDING_LIBVIRTMEM'
,
None
)],
language
=
'c'
),
DSO
(
'wendelin.wcfs.internal.libwcfs'
,
[
'wcfs/internal/wcfs_virtmem.cpp'
,
'wcfs/internal/wcfs_watchlink.cpp'
,
'wcfs/internal/wcfs_misc.cpp'
],
dsos
=
[
'wendelin.bigfile.libvirtmem'
])],
ext_modules
=
[
PyGoExt
(
'wendelin.bigfile._bigfile'
,
...
...
@@ -275,15 +280,11 @@ setup(
PyGoExt
(
'wendelin.bigfile._file_zodb'
,
[
'bigfile/_file_zodb.pyx'
],
dsos
=
[
'wendelin.bigfile.libvirtmem'
]),
# XXX needed?
dsos
=
[
'wendelin.wcfs.internal.libwcfs'
]),
PyGoExt
(
'wendelin.wcfs.internal._wcfs'
,
[
'wcfs/internal/_wcfs.pyx'
,
'wcfs/internal/wcfs_virtmem.cpp'
,
'wcfs/internal/wcfs_watchlink.cpp'
,
'wcfs/internal/wcfs_misc.cpp'
,
],
dsos
=
[
'wendelin.bigfile.libvirtmem'
]),
[
'wcfs/internal/_wcfs.pyx'
],
dsos
=
[
'wendelin.wcfs.internal.libwcfs'
]),
PyGoExt
(
'wendelin.wcfs.internal.wcfs_test'
,
[
'wcfs/internal/wcfs_test.pyx'
]),
...
...
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