summaryrefslogtreecommitdiff
path: root/ld/ldlex-wrapper.c
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@nildram.co.uk>2010-02-10 19:48:15 +0000
committerRichard Sandiford <rsandifo@nildram.co.uk>2010-02-10 19:48:15 +0000
commit91516ea7aecc0aed2d2be0eb39860443a1d8d124 (patch)
treea80146a80d9793e2fceaa694b917bcceae1cbd52 /ld/ldlex-wrapper.c
parentb3a082fe4b3a0f602dd89aec077bccd7cf247e43 (diff)
downloadbinutils-redhat-91516ea7aecc0aed2d2be0eb39860443a1d8d124.tar.gz
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 0000000000..ef2beba66e
--- /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"