We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2bd13e commit 39571e2Copy full SHA for 39571e2
2 files changed
Makefile
@@ -43,7 +43,7 @@ ifdef FILESDIR
43
override CPPFLAGS+=-DFILESDIR=\"$(FILESDIR)\"
44
endif
45
46
-RDYNAMIC=-rdynamic
+RDYNAMIC?=-rdynamic
47
# Set the CPPCHK_GLIBCXX_DEBUG flag. This flag is not used in release Makefiles.
48
# The _GLIBCXX_DEBUG define doesn't work in Cygwin or other Win32 systems.
49
ifndef COMSPEC
tools/dmake/dmake.cpp
@@ -621,7 +621,7 @@ int main(int argc, char **argv)
621
<< "endif\n\n";
622
623
// enable backtrac
624
- fout << "RDYNAMIC=-rdynamic\n";
+ fout << "RDYNAMIC?=-rdynamic\n";
625
626
// The _GLIBCXX_DEBUG doesn't work in cygwin or other Win32 systems.
627
fout << "# Set the CPPCHK_GLIBCXX_DEBUG flag. This flag is not used in release Makefiles.\n"
0 commit comments