Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
eb90fe63
Commit
eb90fe63
authored
Jan 17, 2018
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A bit of cleanup
parent
fa14909e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
setup.py
setup.py
+10
-5
No files found.
setup.py
View file @
eb90fe63
...
...
@@ -146,14 +146,19 @@ class CMakeBuild(build_ext):
if
not
os
.
path
.
exists
(
build_folder
):
os
.
makedirs
(
build_folder
)
print
(
"Invoking CMake setup: '{}'"
.
format
([
'cmake'
,
ext
.
sourcedir
]
+
cmake_args
))
subprocess
.
check_call
([
'cmake'
,
ext
.
sourcedir
]
+
cmake_args
,
cwd
=
build_folder
)
print
(
"Invoking CMake build: '{}'"
.
format
([
'cmake'
,
'--build'
,
'.'
]
+
build_args
))
subprocess
.
check_call
([
'cmake'
,
'--build'
,
'.'
]
+
build_args
,
cwd
=
build_folder
)
cmake_setup
=
[
'cmake'
,
ext
.
sourcedir
]
+
cmake_args
cmake_build
=
[
'cmake'
,
'--build'
,
'.'
]
+
build_args
print
(
"Invoking CMake setup: '{}'"
.
format
(
' '
.
join
(
cmake_setup
)))
subprocess
.
check_call
(
cmake_setup
,
cwd
=
build_folder
)
print
(
"Invoking CMake build: '{}'"
.
format
(
' '
.
join
(
cmake_build
)))
subprocess
.
check_call
(
cmake_build
,
cwd
=
build_folder
)
def
num_available_cpu_cores
(
ram_per_build_process_in_gb
):
if
os
.
environ
.
has_key
(
'TRAVIS'
)
and
os
.
environ
[
'TRAVIS'
]
==
'true'
:
return
2
# When building on travis-ci, just use 2 cores since travis-ci limits you to that regardless of what the hardware might suggest.
# When building on travis-ci, just use 2 cores since travis-ci limits
# you to that regardless of what the hardware might suggest.
return
2
try
:
mem_bytes
=
os
.
sysconf
(
'SC_PAGE_SIZE'
)
*
os
.
sysconf
(
'SC_PHYS_PAGES'
)
mem_gib
=
mem_bytes
/
(
1024.
**
3
)
...
...
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