diff options
author | obrien <obrien@FreeBSD.org> | 2002-04-15 03:15:40 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-04-15 03:15:40 +0000 |
commit | 88095cb94f707d2545177a1102c36205d5a79795 (patch) | |
tree | 8917b5bfb454e0a398280844c20a20b3c1cfdab4 /gnu | |
parent | 1e867a64f1ad704c1bff26da353524b88b460281 (diff) | |
download | FreeBSD-src-88095cb94f707d2545177a1102c36205d5a79795.zip FreeBSD-src-88095cb94f707d2545177a1102c36205d5a79795.tar.gz |
Turn off collect2.
collect2 was added based on the need of -frepo. However, -frepo is currently
broken on -CURRENT (Gcc 2.95.4 20020320 [FreeBSD] / ld 2.12.0 [FreeBSD]
2002-04-10). It is also broken on RELENG_4 (Gcc 2.95.3 20010315 / ld
2.11.2 20010719), so there is no need to MFC collect2 there yet. I have
a feeling the brokeness is due to the wide difference between the libiberty
bits of Gcc 2.95 and the later ld.
Testing by: fjoe
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/cc/Makefile b/gnu/usr.bin/cc/Makefile index 95d580e..a75747b 100644 --- a/gnu/usr.bin/cc/Makefile +++ b/gnu/usr.bin/cc/Makefile @@ -11,9 +11,9 @@ SUBDIR+= cpp .if !defined(NO_CXX) SUBDIR+= cc1plus c++ c++filt doc -.if !defined(NO_COLLECT2) -SUBDIR+= collect2 -.endif +#.if !defined(NO_COLLECT2) +#SUBDIR+= collect2 +#.endif .endif .if !defined(NO_OBJC) |