From ca06e200d2975a7ba3741f656f64d9579c54f90d Mon Sep 17 00:00:00 2001 From: ian Date: Wed, 6 Dec 2017 17:43:29 +0000 Subject: [PATCH] libgo: remove -fplan9-extensions from CFLAGS Remove -fplan9-extensions from the CFLAGS used for libgo (no longer needed since the runtime was converted from C to Go). Reviewed-on: https://go-review.googlesource.com/82177 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@255445 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/go/gofrontend/MERGE | 2 +- libgo/Makefile.am | 2 +- libgo/Makefile.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index b185c9e59c3..14baef5f6c2 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -d16e370c93e2866a961847a15f5001413e66d179 +c02de8ca63f52a2475ce8645edee3203a3c908ac The first line of this file holds the git revision number of the last merge done from the gofrontend repository. diff --git a/libgo/Makefile.am b/libgo/Makefile.am index 7be49973f95..85c5c774ff7 100644 --- a/libgo/Makefile.am +++ b/libgo/Makefile.am @@ -40,7 +40,7 @@ AM_CPPFLAGS = -I $(srcdir)/runtime $(LIBFFIINCS) $(PTHREAD_CFLAGS) ACLOCAL_AMFLAGS = -I ./config -I ../config -AM_CFLAGS = -fexceptions -fnon-call-exceptions -fplan9-extensions \ +AM_CFLAGS = -fexceptions -fnon-call-exceptions \ $(SPLIT_STACK) $(WARN_CFLAGS) \ $(STRINGOPS_FLAG) $(HWCAP_CFLAGS) $(OSCFLAGS) \ -I $(srcdir)/../libgcc -I $(srcdir)/../libbacktrace \ diff --git a/libgo/Makefile.in b/libgo/Makefile.in index ac9f5291a10..3cf1daae4b5 100644 --- a/libgo/Makefile.in +++ b/libgo/Makefile.in @@ -458,7 +458,7 @@ WARN_CFLAGS = $(WARN_FLAGS) $(WERROR) # -I/-D flags to pass when compiling. AM_CPPFLAGS = -I $(srcdir)/runtime $(LIBFFIINCS) $(PTHREAD_CFLAGS) ACLOCAL_AMFLAGS = -I ./config -I ../config -AM_CFLAGS = -fexceptions -fnon-call-exceptions -fplan9-extensions \ +AM_CFLAGS = -fexceptions -fnon-call-exceptions \ $(SPLIT_STACK) $(WARN_CFLAGS) \ $(STRINGOPS_FLAG) $(HWCAP_CFLAGS) $(OSCFLAGS) \ -I $(srcdir)/../libgcc -I $(srcdir)/../libbacktrace \ -- 2.11.4.GIT