mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +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
|
@ -1535,7 +1535,7 @@ class DotNetDLLComponent(Component):
|
|||
]
|
||||
)
|
||||
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:full',
|
||||
'/optimize-'
|
||||
|
|
Loading…
Reference in a new issue