aboutsummaryrefslogtreecommitdiff
path: root/ld/ldlex-wrapper.c
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2010-02-10 19:48:16 +0000
committerRichard Sandiford <rdsandiford@googlemail.com>2010-02-10 19:48:16 +0000
commit45e481d13b770b743fb0be9d9f5fe8c0e03c2a12 (patch)
tree14f819c32b3f80869e9b4ee93a553113934f78e9 /ld/ldlex-wrapper.c
parent92981e24467c4247c8bf16780cac90b340c0a4c2 (diff)
downloadfsf-binutils-gdb-45e481d13b770b743fb0be9d9f5fe8c0e03c2a12.zip
fsf-binutils-gdb-45e481d13b770b743fb0be9d9f5fe8c0e03c2a12.tar.gz
fsf-binutils-gdb-45e481d13b770b743fb0be9d9f5fe8c0e03c2a12.tar.bz2
ld/
* Makefile.am (CFILES): Add ldlex-wrapper.c. (OFILES): Replace ldlex.c with ldlex-wrapper.c. (ldlex.o): Replace with... (ldlex-wrapper.o): ...this new rule. (EXTRA_ld_new_SOURCES): Add ldlex.l. (ld_new_SOURCES): Replace ldlex.l with ldlex-wrapper.c. * Makefile.in: Regenerate. * ldlex.l (sysdep.h): Don't include here. * ldlex-wrapper.c: New file.
Diffstat (limited to 'ld/ldlex-wrapper.c')
-rw-r--r--ld/ldlex-wrapper.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ld/ldlex-wrapper.c b/ld/ldlex-wrapper.c
new file mode 100644
index 0000000..ef2beba
--- /dev/null
+++ b/ld/ldlex-wrapper.c
@@ -0,0 +1,6 @@
+/* The flex output (ldlex.c) includes stdio.h before any of the C code
+ in ldlex.l. Make sure we include sysdep.h first, so that config.h
+ can select the correct value of things like _FILE_OFFSET_BITS and
+ _LARGE_FILES. */
+#include "sysdep.h"
+#include "ldlex.c"