| From c0e7c34134aa1f9644075c596a2338a50d3d923e Mon Sep 17 00:00:00 2001 |
| From: Khem Raj <raj.khem@gmail.com> |
| Date: Sat, 30 Apr 2016 15:35:39 -0700 |
| Subject: [PATCH 6/9] Change order of CFLAGS |
| |
| Lets us override Werror if need be |
| |
| Upstream-Status: Inappropriate |
| |
| Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| --- |
| gdbserver/Makefile.in | 2 +- |
| 1 file changed, 1 insertion(+), 1 deletion(-) |
| |
| diff --git a/gdbserver/Makefile.in b/gdbserver/Makefile.in |
| index 47648b8d962..5599779de57 100644 |
| --- a/gdbserver/Makefile.in |
| +++ b/gdbserver/Makefile.in |
| @@ -156,7 +156,7 @@ WIN32APILIBS = @WIN32APILIBS@ |
| INTERNAL_CFLAGS_BASE = ${GLOBAL_CFLAGS} \ |
| ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS} ${CPPFLAGS} $(PTHREAD_CFLAGS) |
| INTERNAL_WARN_CFLAGS = ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS) |
| -INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS) -DGDBSERVER |
| +INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS) ${COMPILER_CFLAGS} -DGDBSERVER |
| |
| # LDFLAGS is specifically reserved for setting from the command line |
| # when running make. |
| -- |
| 2.36.1 |
| |