Temporarily disable the code that wants to add -lstdc++ in tge g++ driver

since we don't have it yet and I've taken too long on the libg++-2.7.2
stuff (it causes problems due to to the lack of .weak support which I've
nearly finished)

Submitted by: "Ph. Charnier" <charnier@xp11.frmug.org>
This commit is contained in:
Peter Wemm 1996-09-27 05:13:40 +00:00
parent c8de1e0212
commit 252bb01fbc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18505

View File

@ -542,8 +542,11 @@ main (argc, argv)
/* Add `-lg++' if we haven't already done so. */
if (library == 2)
arglist[j++] = "-lg++";
#ifndef __FreeBSD__
/* Temporary only */
if (library)
arglist[j++] = "-lstdc++";
#endif
if (saw_math)
arglist[j++] = saw_math;
else if (library)