Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Matthias Mayr
limbo
Commits
959fb3f4
Commit
959fb3f4
authored
May 21, 2018
by
Jean-Baptiste Mouret
Browse files
create the build dir during configure, otherwise we cannot write the options
parent
f947482f
Changes
1
Hide whitespace changes
Inline
Side-by-side
wscript
View file @
959fb3f4
...
...
@@ -90,6 +90,10 @@ def options(opt):
opt
.
add_option
(
'--regression_benchmarks'
,
type
=
'string'
,
help
=
'config file (json) to compile benchmark for regression'
,
dest
=
'regression_benchmarks'
)
try
:
os
.
mkdir
(
blddir
)
# because this is not always created at that stage
except
:
print
(
"build dir not created (it probably already exists, this is fine)"
)
opt
.
logger
=
Logs
.
make_logger
(
blddir
+
'/options.log'
,
'mylogger'
)
for
i
in
glob
.
glob
(
'exp/*'
):
...
...
Write
Preview
Supports
Markdown
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