Kaydet (Commit) 9f5b9dff authored tarafından Tor Lillqvist's avatar Tor Lillqvist Kaydeden (comit) Tor Lillqvist

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)" == "".
üst bfdd042d
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment