diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2004-05-07 11:54:55 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2004-05-07 11:54:55 +0000 |
commit | 453e18e24e909a8d0118bd18ce8023667c30e00b (patch) | |
tree | 142612ede5f0c14c878405a4479fc3a6912d9e10 /lang/icc/files/ld.c | |
parent | Update to 2.6.0.2 (diff) |
icc 8.0.066 now adds "-m elf_i386" in some circumstances. Remove this part
of the command line in the ld wrapper.
Noticed by: Morten Rodal <morten@rodal.no>
Notes
Notes:
svn path=/head/; revision=108611
Diffstat (limited to 'lang/icc/files/ld.c')
-rw-r--r-- | lang/icc/files/ld.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/icc/files/ld.c b/lang/icc/files/ld.c index 66420cebfeae..2f135697e1d5 100644 --- a/lang/icc/files/ld.c +++ b/lang/icc/files/ld.c @@ -184,7 +184,9 @@ main(int argc, char *argv[], char *envp[]) for (i = 0; i < argc; i++) { if (ARGCMP(i, "-CPLUSPLUS") || ARGCMP(i, "-MT") || - ARGCMP(i, "-PIC")) + ARGCMP(i, "-PIC") || + (ARGCMP(i, "-m") && i<argc-1 && ARGCMP(i+1, "elf_i386")) || + (ARGCMP(i, "elf_i386") && i != 0 && ARGCMP(i-1, "-m"))) continue; /* prepend "-melf_i386" to the commandline */ |