Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Niflib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Grant Kim
Niflib
Commits
8c4d3951
Commit
8c4d3951
authored
18 years ago
by
Amorilia
Browse files
Options
Downloads
Patches
Plain Diff
WIP: building the python wrapper via scons; fixing includes and ushort
parent
09301f71
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
SConstruct
+6
-6
6 additions, 6 deletions
SConstruct
pyniflib.i
+516
-516
516 additions, 516 deletions
pyniflib.i
with
522 additions
and
522 deletions
SConstruct
+
6
−
6
View file @
8c4d3951
...
...
@@ -89,11 +89,11 @@ if arch == 'x86_64' and TUNE == 'yes':
#We want to detect the number of jobs! Although some folks depending on sys load may want to set it more aggressively.
if
DETECT_JOBS
==
'
yes
'
and
OS
==
'
linux
'
:
detected_jobs
=
commands
.
getoutput
(
'
cat /proc/cpuinfo | grep -c processor
'
)
if
detected_jobs
>=
'
2
'
:
if
detected_jobs
>=
'
1
'
:
print
"
Detected Jobs: %s
"
%
detected_jobs
JOBS
=
detected_jobs
print
"
Detected Jobs changing to %s
"
%
JOBS
else
:
else
:
print
"
Error Detecting jobs!
"
...
...
@@ -400,13 +400,13 @@ niflib = env.SharedLibrary('niflib', [core_objfiles, gen_objfiles, obj_objfiles,
##
#
nifshlib = env.SharedLibrary('_niflib', 'pyniflib.i', LIBS=['niflib'] + python_lib, LIBPATH=['.'] + python_libpath, SWIGFLAGS = '-c++ -python', CPPPATH = ['.'] + python_include,
CPPFLAGS = cppflags,
SHLIBPREFIX='')
nifshlib
=
env
.
SharedLibrary
(
'
_niflib
'
,
'
pyniflib.i
'
,
LIBS
=
[
'
niflib
'
]
+
python_lib
,
LIBPATH
=
[
'
.
'
]
+
python_libpath
,
SWIGFLAGS
=
'
-c++ -python
'
,
CPPPATH
=
[
'
.
'
]
+
python_include
,
SHLIBPREFIX
=
''
)
# makes sure niflib.lib is built before trying to build _niflib.dll
#
env.Depends(nifshlib, niflib)
env
.
Depends
(
nifshlib
,
niflib
)
# Here's how to compile niflyze:
#env.Program('niflyze', 'niflyze.cpp', LIBS=['niflib'], LIBPATH=['.']
, CPPFLAGS = cppflags
)
#env.Program('niflyze', 'niflyze.cpp', LIBS=['niflib'], LIBPATH=['.'])
# A test program:
#env.Program('test', 'test.cpp', LIBS=['niflib'], LIBPATH=['.'], CPPFLAGS = cppflags)
\ No newline at end of file
#env.Program('test', 'test.cpp', LIBS=['niflib'], LIBPATH=['.'])
This diff is collapsed.
Click to expand it.
pyniflib.i
+
516
−
516
View file @
8c4d3951
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment