diff options
| author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-22 12:35:41 +0000 | 
|---|---|---|
| committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-22 12:35:41 +0000 | 
| commit | 6547bced933fface8e0f0dde08f0e0fe1777ddf9 (patch) | |
| tree | dd9ff179b33488ed7acf0829c89c7f1057dcd3b0 /toolchain/gcc | |
| parent | 3471ebe0a3d5c74856ce8fe813345136a5f2aaf3 (diff) | |
| download | buildroot-novena-6547bced933fface8e0f0dde08f0e0fe1777ddf9.tar.gz buildroot-novena-6547bced933fface8e0f0dde08f0e0fe1777ddf9.zip  | |
- global whitespace trimming
Diffstat (limited to 'toolchain/gcc')
| -rw-r--r-- | toolchain/gcc/Makefile.in | 2 | ||||
| -rw-r--r-- | toolchain/gcc/gcc-uclibc-3.x.mk | 16 | ||||
| -rw-r--r-- | toolchain/gcc/gcc-uclibc-4.x.mk | 16 | 
3 files changed, 17 insertions, 17 deletions
diff --git a/toolchain/gcc/Makefile.in b/toolchain/gcc/Makefile.in index b087eb22c..2ff11624e 100644 --- a/toolchain/gcc/Makefile.in +++ b/toolchain/gcc/Makefile.in @@ -1,6 +1,6 @@  # gcc has a bunch of options that need to be shared with  # both gcc-uclibc-2.95.mk and gcc-uclibc-3.x.mk, and are -# use by other packages...  So include them in this file +# use by other packages... So include them in this file  # and arrange to include it soon after invoking make from  # the top level. diff --git a/toolchain/gcc/gcc-uclibc-3.x.mk b/toolchain/gcc/gcc-uclibc-3.x.mk index b365dbc60..92995f845 100644 --- a/toolchain/gcc/gcc-uclibc-3.x.mk +++ b/toolchain/gcc/gcc-uclibc-3.x.mk @@ -145,9 +145,9 @@ $(GCC_DIR)/.patched: $(GCC_DIR)/.unpacked  	toolchain/patch-kernel.sh $(GCC_DIR) $(GCC_PATCH_DIR) \*.patch  	# Note: The soft float situation has improved considerably with gcc 3.4.x.  	# We can dispense with the custom spec files, as well as libfloat for the arm case. -	# However, we still need a patch for arm.  There's a similar patch for gcc 3.3.x +	# However, we still need a patch for arm. There's a similar patch for gcc 3.3.x  	# which needs to be integrated so we can kill of libfloat for good, except for -	# anyone (?) who might still be using gcc 2.95.  mjn3 +	# anyone (?) who might still be using gcc 2.95. mjn3  ifeq ($(BR2_SOFT_FLOAT),y)  ifeq ("$(strip $(ARCH))","arm")  	toolchain/patch-kernel.sh $(GCC_DIR) toolchain/gcc/$(GCC_VERSION) arm-softfloat.patch.conditional @@ -210,21 +210,21 @@ gcc_initial-dirclean:  #############################################################  # -# second pass compiler build.  Build the compiler targeting +# second pass compiler build. Build the compiler targeting  # the newly built shared uClibc library.  #  #############################################################  #  # Sigh... I had to rework things because using --with-gxx-include-dir -# causes issues with include dir search order for g++.  This seems to +# causes issues with include dir search order for g++. This seems to  # have something to do with "path translations" and possibly doesn't -# affect gcc-target.  However, I haven't tested gcc-target yet so no -# guarantees.  mjn3 +# affect gcc-target. However, I haven't tested gcc-target yet so no +# guarantees. mjn3  comma:=,  GCC_BUILD_DIR2:=$(TOOL_BUILD_DIR)/gcc-$(GCC_VERSION)-final  $(GCC_BUILD_DIR2)/.configured: $(GCC_DIR)/.patched $(GCC_STAGING_PREREQ)  	mkdir -p $(GCC_BUILD_DIR2) -	# Important!  Required for limits.h to be fixed. +	# Important! Required for limits.h to be fixed.  	ln -snf ../include $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/sys-include  	#-rmdir $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/lib  	#ln -snf ../lib/ $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/lib @@ -444,7 +444,7 @@ endif  	#  	rm -f $(TARGET_DIR)/usr/lib/*.la*  	#rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ -	#	$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc +	# $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc  	# Work around problem of missing syslimits.h  	if [ ! -f $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR)/include/syslimits.h ]; then \  		echo "warning: working around missing syslimits.h"; \ diff --git a/toolchain/gcc/gcc-uclibc-4.x.mk b/toolchain/gcc/gcc-uclibc-4.x.mk index eea12895e..07c42b1ae 100644 --- a/toolchain/gcc/gcc-uclibc-4.x.mk +++ b/toolchain/gcc/gcc-uclibc-4.x.mk @@ -155,9 +155,9 @@ $(GCC_DIR)/.patched: $(GCC_DIR)/.unpacked  	# Note: The soft float situation has improved considerably with gcc 3.4.x.  	# We can dispense with the custom spec files, as well as libfloat for the arm case. -	# However, we still need a patch for arm.  There's a similar patch for gcc 3.3.x +	# However, we still need a patch for arm. There's a similar patch for gcc 3.3.x  	# which needs to be integrated so we can kill of libfloat for good, except for -	# anyone (?) who might still be using gcc 2.95.  mjn3 +	# anyone (?) who might still be using gcc 2.95. mjn3  ifeq ($(BR2_SOFT_FLOAT),y)  ifeq ("$(strip $(ARCH))","arm")  	toolchain/patch-kernel.sh $(GCC_DIR) toolchain/gcc/$(GCC_VERSION) arm-softfloat.patch.conditional @@ -228,21 +228,21 @@ gcc_initial-dirclean:  #############################################################  # -# second pass compiler build.  Build the compiler targeting +# second pass compiler build. Build the compiler targeting  # the newly built shared uClibc library.  #  #############################################################  #  # Sigh... I had to rework things because using --with-gxx-include-dir -# causes issues with include dir search order for g++.  This seems to +# causes issues with include dir search order for g++. This seems to  # have something to do with "path translations" and possibly doesn't -# affect gcc-target.  However, I haven't tested gcc-target yet so no -# guarantees.  mjn3 +# affect gcc-target. However, I haven't tested gcc-target yet so no +# guarantees. mjn3  GCC_BUILD_DIR2:=$(TOOL_BUILD_DIR)/gcc-$(GCC_VERSION)-final  $(GCC_BUILD_DIR2)/.configured: $(GCC_DIR)/.patched $(GCC_STAGING_PREREQ)  	mkdir -p $(GCC_BUILD_DIR2) -	# Important!  Required for limits.h to be fixed. +	# Important! Required for limits.h to be fixed.  	ln -snf ../include/ $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/sys-include  	#-rmdir $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/lib  	#ln -snf ../lib $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/lib @@ -465,7 +465,7 @@ endif  	#  	rm -f $(TARGET_DIR)/usr/lib/*.la*  	#rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ -	#	$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc +	# $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc  	# Work around problem of missing syslimits.h  	if [ ! -f $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR)/include/syslimits.h ]; then \  		echo "warning: working around missing syslimits.h"; \  | 
