Skip to content

Commit

Permalink
fix nodebug
Browse files Browse the repository at this point in the history
  • Loading branch information
jpihl committed Jan 19, 2021
1 parent cf9137e commit f98b7a6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion buildbot.py
Expand Up @@ -45,7 +45,12 @@ def configure(properties):
properties['dependency_project'],
properties['dependency_checkout'])]

command += ["--cxx_mkspec={}".format(properties['cxx_mkspec'])]
if 'cxx_mkspec' in properties:
command += ["--cxx_mkspec={}".format(properties['cxx_mkspec'])]

if 'nodebug' in properties:
command += ["--cxx_nodebug"]

command += get_tool_options(properties)

run_command(command)
Expand Down

0 comments on commit f98b7a6

Please sign in to comment.