diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 2 | ||||
-rw-r--r-- | gas/Makefile.in | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1d175e9..5b4fe16 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -8,6 +8,8 @@ Tue Dec 31 15:12:35 1996 Michael Meissner <meissner@tiktok.cygnus.com> end-sanitize-v850 Tue Dec 31 12:56:41 1996 Ian Lance Taylor <ian@cygnus.com> + * Makefile.in (ALL_CFLAGS): Add -D_GNU_SOURCE. + * config/tc-sparc.c (md_apply_fix3): Rename from md_apply_fix, and add segment argument. If OBJ_ELF, treat a relocation against a symbol in a linkonce section like a relocation against an external diff --git a/gas/Makefile.in b/gas/Makefile.in index b625d5a..afaa93e 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -227,7 +227,7 @@ stamp-mk.com: vmsconf.sh Makefile # Now figure out from those variables how to compile and link. # This is the variable actually used when we compile. -ALL_CFLAGS = $(INTERNAL_CFLAGS) $(CROSS) $(CFLAGS) $(HDEFINES) $(TDEFINES) +ALL_CFLAGS = -D_GNU_SOURCE $(INTERNAL_CFLAGS) $(CROSS) $(CFLAGS) $(HDEFINES) $(TDEFINES) # How to link with both our special library facilities # and the system's installed libraries. |