Make the workaround for the crash at exit effective in a non-debug build
I hadn't noticed that cppu/util/target.pmk was surrounded by .IF "$(debug)" == "".
This commit is contained in:
parent
bfdd042d2c
commit
9f5b9dffa3
1 changed files with 6 additions and 3 deletions
|
@ -45,9 +45,14 @@ CFLAGS += -O
|
|||
|
||||
.ELSE
|
||||
|
||||
.IF "$(COM)" == "MSC"
|
||||
# msvc++: no inlining
|
||||
.IF "$(COM)" == "MSC"
|
||||
CFLAGS += -Ob0
|
||||
.ENDIF
|
||||
|
||||
.ENDIF
|
||||
|
||||
.IF "$(COM)" == "MSC"
|
||||
.IF "$(cppu_no_leak)" == ""
|
||||
.IF "$(bndchk)" == ""
|
||||
# msvc++: workaround for strange crash at exit: just don't do the
|
||||
|
@ -56,5 +61,3 @@ CFLAGS += -DCPPU_LEAK_STATIC_DATA
|
|||
.ENDIF
|
||||
.ENDIF
|
||||
.ENDIF
|
||||
|
||||
.ENDIF
|
||||
|
|
Loading…
Reference in a new issue