aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2019-07-08 06:21:11 +0000
committerRichard Sandiford <richard.sandiford@arm.com>2019-07-08 06:21:11 +0000
commit976caaa0ec53a7afaa64fdce7b6457adcf929a56 (patch)
tree6c81e16a6fd1010a056d4fde943565f6e51f6891 /config
parent1e706e68a9f9169b569ddacf49e37e92f15feb12 (diff)
Add a build config for bootstrapping at -Og
Although BOOT_CFLAGS can be used to bootstrap with -Og, having a dedicated build config is sometimes more convenient. 2019-07-08 Richard Sandiford <richard.sandiford@arm.com> config/ * bootstrap-Og.mk: New file. gcc/ * doc/install.texi (bootstrap-Og): Document. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@273193 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog4
-rw-r--r--config/bootstrap-Og.mk1
2 files changed, 5 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 63f4325314f..5a06cdeea81 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,7 @@
+2019-07-08 Richard Sandiford <richard.sandiford@arm.com>
+
+ * bootstrap-Og.mk: New file.
+
2019-06-25 Kwok Cheung Yeung <kcy@codesourcery.com>
Andrew Stubbs <ams@codesourcery.com>
diff --git a/config/bootstrap-Og.mk b/config/bootstrap-Og.mk
new file mode 100644
index 00000000000..9057afbe354
--- /dev/null
+++ b/config/bootstrap-Og.mk
@@ -0,0 +1 @@
+BOOT_CFLAGS := -Og $(filter-out -O%, $(BOOT_CFLAGS))