aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Dunlop <bob.dunlop@xyzzy.org.uk>2014-11-18 22:12:52 +0000
committerJeff Law <law@gcc.gnu.org>2014-11-18 15:12:52 -0700
commit31f44312544d6632552b7debe987f65a028ffc42 (patch)
treef2f4d4c38b38f2ed0299b19676430b502b427f25
parentf899317ec285f038d1cd3a17e46b0639e7340af4 (diff)
downloadgcc-31f44312544d6632552b7debe987f65a028ffc42.zip
gcc-31f44312544d6632552b7debe987f65a028ffc42.tar.gz
gcc-31f44312544d6632552b7debe987f65a028ffc42.tar.bz2
mt-ospace (CFLAGS_FOR_TARGET): Append -g -Os rather than overwriting.
2014-11-17 Bob Dunlop <bob.dunlop@xyzzy.org.uk> * mt-ospace (CFLAGS_FOR_TARGET): Append -g -Os rather than overwriting. (CXXFLAGS_FOR_TARGET): Similarly. From-SVN: r217739
-rw-r--r--config/ChangeLog6
-rw-r--r--config/mt-ospace4
2 files changed, 8 insertions, 2 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 6f27566..ab3a773 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,9 @@
+2014-11-17 Bob Dunlop <bob.dunlop@xyzzy.org.uk>
+
+ * mt-ospace (CFLAGS_FOR_TARGET): Append -g -Os rather than
+ overwriting.
+ (CXXFLAGS_FOR_TARGET): Similarly.
+
2014-11-17 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/63888
diff --git a/config/mt-ospace b/config/mt-ospace
index 7f09104..ce29ff4 100644
--- a/config/mt-ospace
+++ b/config/mt-ospace
@@ -1,3 +1,3 @@
# Build libraries optimizing for space, not speed.
- CFLAGS_FOR_TARGET = -g -Os
- CXXFLAGS_FOR_TARGET = -g -Os
+ CFLAGS_FOR_TARGET += -g -Os
+ CXXFLAGS_FOR_TARGET += -g -Os