mirror of
https://github.com/Z3Prover/z3
synced 2025-06-03 21:01:22 +00:00
Fix bug in `Makefile
` generation when emitting the command to build
the ".NET" bindings when in debug mode. ``;`` is a shell command separator so it needs to be quoted when emitting ``/define:DEBUG;TRACE``.
This commit is contained in:
parent
28eb21442e
commit
d3d10490ea
1 changed files with 1 additions and 1 deletions
|
@ -1535,7 +1535,7 @@ class DotNetDLLComponent(Component):
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
if DEBUG_MODE:
|
if DEBUG_MODE:
|
||||||
cscCmdLine.extend( ['/define:DEBUG;TRACE',
|
cscCmdLine.extend( ['"/define:DEBUG;TRACE"', # Needs to be quoted due to ``;`` being a shell command separator
|
||||||
'/debug+',
|
'/debug+',
|
||||||
'/debug:full',
|
'/debug:full',
|
||||||
'/optimize-'
|
'/optimize-'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue