summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorandris <andris@138bc75d-0d04-0410-961f-82ee72b054a4>2016-01-12 18:36:00 +0000
committerandris <andris@138bc75d-0d04-0410-961f-82ee72b054a4>2016-01-12 18:36:00 +0000
commit7aa502669221a0f369f3e104758f0e87725851c1 (patch)
tree6cfaca46cb871317241aa699d513ed57574af53f /configure
parente1a390d6889d55bbfbe87bff4f25b5c8234fb248 (diff)
Enable LTO for DJGPP
* configure.ac: enable LTO * configure: Regenerate git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232290 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 19eb2a4a44ac..cae337380473 100755
--- a/configure
+++ b/configure
@@ -6127,7 +6127,7 @@ if test $target_elf = yes; then :
else
if test x"$default_enable_lto" = x"yes" ; then
case $target in
- *-apple-darwin9* | *-cygwin* | *-mingw*) ;;
+ *-apple-darwin9* | *-cygwin* | *-mingw* | *djgpp*) ;;
# On other non-ELF platforms, LTO has yet to be validated.
*) enable_lto=no ;;
esac
@@ -6138,7 +6138,7 @@ else
# warn during gcc/ subconfigure; unless you're bootstrapping with
# -flto it won't be needed until after installation anyway.
case $target in
- *-cygwin* | *-mingw* | *-apple-darwin*) ;;
+ *-cygwin* | *-mingw* | *-apple-darwin* | *djgpp*) ;;
*) if test x"$enable_lto" = x"yes"; then
as_fn_error "LTO support is not enabled for this target." "$LINENO" 5
fi