#  i386 specific libc

#SRCFILES += gccstubs.S

#LIBCOBJS += libgcc.o 

# NOTE: Right now, none of this is being used anymore...


# Note: the GCC compiler generates calls to a bunch of 
#	specialized functions for things like division of
#	64-bit longs on Intel machines.  Therefore, it is
#	necessary to generate a dummy stub file with references
#	to these functions, and link it with the standard libraries
#	to generate an object file that has these functions.
#	This object files is then incorporated into the new standard
#	C libraries.  This could be done by instead including source
#	code to these functions, but the method employed here insures
#	that the libraries will work with the current version of
#	the GCC/G++ compiler.

#libgcc.o: gccstubs.o
#	${CXX} -static -nostartfiles -nostdlib -nodefaultlibs \
#		-r -o libgcc.o gccstubs.o -lgcc

