diff options
author | netchild <netchild@FreeBSD.org> | 2004-05-07 11:54:55 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2004-05-07 11:54:55 +0000 |
commit | a3e8d45c1e43e49ef74e00b54034a1409c84034a (patch) | |
tree | 0ed1096641973e8c467f76c1bfa65a35fc12644b /lang/icc/files/ld.c | |
parent | 1aeeb98ac5d2f7e00404ba845f793da934e9efe4 (diff) | |
download | FreeBSD-ports-a3e8d45c1e43e49ef74e00b54034a1409c84034a.zip FreeBSD-ports-a3e8d45c1e43e49ef74e00b54034a1409c84034a.tar.gz |
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>
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 66420ce..2f13569 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 */ |