This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

bug in gcc/configure


The following is not correct in gcc/configure:

	# With GNU ld
	# Check whether --with-gnu-ld or --without-gnu-ld was given.
	if test "${with_gnu_ld+set}" = set; then
	  withval="$with_gnu_ld"
	  gnu_ld=yes
	else
	  gnu_ld=no
	fi

If you specify --without-gnu-ld, this gets translated into
with_gnu_ld=no, which then causes gnu_ld=yes.

Joe Buehler


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]