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
tapasco
tapasco
Commits
fcd5e3a6
Commit
fcd5e3a6
authored
May 26, 2017
by
Jens Korinth
Browse files
tapasco-build-libs: build tapasco-debug and tapasco-benchmark
parent
13748a1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/tapasco-build-libs
View file @
fcd5e3a6
...
...
@@ -28,6 +28,7 @@ print('Platform: ' + os.environ['TAPASCO_PLATFORM'])
moddir
=
'$TAPASCO_HOME/platform/$TAPASCO_PLATFORM/module'
pdir
=
'$TAPASCO_HOME/platform/$TAPASCO_PLATFORM/build'
adir
=
'$TAPASCO_HOME/arch/baseline/build'
tdir
=
'$TAPASCO_HOME/arch/tests/build'
if
clean
or
args
.
rebuild
:
subprocess
.
call
([
'rm -rf '
+
pdir
],
shell
=
True
)
...
...
@@ -50,3 +51,4 @@ if not clean:
subprocess
.
call
([
'cd '
+
moddir
+
' && make '
+
(
''
if
driver_debug
else
'release '
)],
shell
=
True
)
subprocess
.
call
([
'mkdir -p '
+
pdir
+
' && cd '
+
pdir
+
' && cmake '
+
(
''
if
debug
else
'-DCMAKE_BUILD_TYPE=Release'
)
+
' .. && make && make install'
],
shell
=
True
)
subprocess
.
call
([
'mkdir -p '
+
adir
+
' && cd '
+
adir
+
' && cmake '
+
(
''
if
debug
else
'-DCMAKE_BUILD_TYPE=Release'
)
+
' .. && make && make install'
],
shell
=
True
)
subprocess
.
call
([
'mkdir -p '
+
tdir
+
' && cd '
+
tdir
+
' && cmake '
+
(
''
if
debug
else
'-DCMAKE_BUILD_TYPE=Release'
)
+
' .. && make && make install'
],
shell
=
True
)
Jens Korinth
@jk
mentioned in commit
a831b501
·
Jul 14, 2017
mentioned in commit
a831b501
mentioned in commit a831b5015df6bd8f8d23ddd334a3b1159392de92
Toggle commit list
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