diff --git a/config/functions b/config/functions index 9642489cdd..dd98ad88de 100644 --- a/config/functions +++ b/config/functions @@ -238,8 +238,6 @@ show_config() { config_message="$config_message\n - Optimizations:\t\t\t $OPTIMIZATIONS" config_message="$config_message\n - LTO (Link Time Optimization) support: $LTO_SUPPORT" config_message="$config_message\n - GOLD (Google Linker) Support:\t $GOLD_SUPPORT" - config_message="$config_message\n - Graphite Support:\t\t\t $GRAPHITE_SUPPORT" - config_message="$config_message\n - LOOP optimization support:\t\t $LOOP_SUPPORT" config_message="$config_message\n - LLVM support:\t\t\t $LLVM_SUPPORT" # config_message="$config_message\n - CFLAGS:\t $TARGET_CFLAGS" diff --git a/config/optimize b/config/optimize index 725634d5e1..c2ef91af12 100644 --- a/config/optimize +++ b/config/optimize @@ -21,17 +21,6 @@ if [ "$OPTIMIZATIONS" = size ];then LD_OPTIM="" fi -if [ "$LOOP_SUPPORT" = yes ];then - GCC_OPTIM="$GCC_OPTIM -ftree-loop-distribution" - GCC_OPTIM="$GCC_OPTIM -floop-interchange" - GCC_OPTIM="$GCC_OPTIM -floop-strip-mine" - GCC_OPTIM="$GCC_OPTIM -floop-block" -fi - -if [ "$GRAPHITE_SUPPORT" = yes ];then - GCC_OPTIM="$GCC_OPTIM -fgraphite-identity" -fi - if [ "$LTO_SUPPORT" = yes -o "$GOLD_SUPPORT" = yes ];then LD_OPTIM="$LD_OPTIM -fuse-linker-plugin" fi diff --git a/packages/sysutils/busybox/build b/packages/sysutils/busybox/build index 9343ad203c..de0fef39ff 100755 --- a/packages/sysutils/busybox/build +++ b/packages/sysutils/busybox/build @@ -31,13 +31,6 @@ fi # busybox fails building with LTO support on gcc-4.6 strip_lto -# fails to build with gcc-4.6.1 (ggc bug #49716 - CFLAGS=`echo $CFLAGS | sed -e "s|-ftree-loop-distribution||"` - CFLAGS=`echo $CFLAGS | sed -e "s|-floop-interchange||"` - CFLAGS=`echo $CFLAGS | sed -e "s|-floop-strip-mine||"` - CFLAGS=`echo $CFLAGS | sed -e "s|-floop-block||"` - CFLAGS=`echo $CFLAGS | sed -e "s|-fgraphite-identity||"` - # optimize for size CFLAGS=`echo $CFLAGS | sed -e "s|-Ofast|-Os|"` CFLAGS=`echo $CFLAGS | sed -e "s|-O.|-Os|"` diff --git a/projects/ATV/options b/projects/ATV/options index 44edd5a786..968b973fcc 100755 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -87,12 +87,6 @@ # GOLD (Google Linker) support GOLD_SUPPORT="no" -# Graphite Support - GRAPHITE_SUPPORT="yes" - -# LOOP optimazion support - LOOP_SUPPORT="yes" - # Bootloader to use (syslinux / u-boot / atv-bootloader) BOOTLOADER="atv-bootloader" diff --git a/projects/Fusion/options b/projects/Fusion/options index 3abdbd24b1..f2c1518cd5 100755 --- a/projects/Fusion/options +++ b/projects/Fusion/options @@ -87,12 +87,6 @@ # GOLD (Google Linker) support GOLD_SUPPORT="no" -# Graphite Support - GRAPHITE_SUPPORT="yes" - -# LOOP optimazion support - LOOP_SUPPORT="yes" - # Bootloader to use (syslinux / u-boot / atv-bootloader) BOOTLOADER="syslinux" diff --git a/projects/Generic/options b/projects/Generic/options index baeb6c6568..cb569d626b 100755 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -87,12 +87,6 @@ # GOLD (Google Linker) support GOLD_SUPPORT="no" -# Graphite Support - GRAPHITE_SUPPORT="yes" - -# LOOP optimazion support - LOOP_SUPPORT="yes" - # Bootloader to use (syslinux / u-boot / atv-bootloader) BOOTLOADER="syslinux" diff --git a/projects/Generic_OSS/options b/projects/Generic_OSS/options index c4c028444a..022afec117 100755 --- a/projects/Generic_OSS/options +++ b/projects/Generic_OSS/options @@ -87,12 +87,6 @@ # GOLD (Google Linker) support GOLD_SUPPORT="no" -# Graphite Support - GRAPHITE_SUPPORT="yes" - -# LOOP optimazion support - LOOP_SUPPORT="yes" - # Bootloader to use (syslinux / u-boot / atv-bootloader) BOOTLOADER="syslinux" diff --git a/projects/ION/options b/projects/ION/options index 90b589b3a1..d7c86fadd9 100755 --- a/projects/ION/options +++ b/projects/ION/options @@ -87,12 +87,6 @@ # GOLD (Google Linker) support GOLD_SUPPORT="no" -# Graphite Support - GRAPHITE_SUPPORT="yes" - -# LOOP optimazion support - LOOP_SUPPORT="yes" - # Bootloader to use (syslinux / u-boot / atv-bootloader) BOOTLOADER="syslinux" diff --git a/projects/Intel/options b/projects/Intel/options index a8cd0d0d32..6aa01c51ac 100755 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -87,12 +87,6 @@ # GOLD (Google Linker) support GOLD_SUPPORT="no" -# Graphite Support - GRAPHITE_SUPPORT="yes" - -# LOOP optimazion support - LOOP_SUPPORT="yes" - # Bootloader to use (syslinux / u-boot / atv-bootloader) BOOTLOADER="syslinux" diff --git a/projects/Ultra/options b/projects/Ultra/options index db8e4eecdf..1c0ba3e5f9 100755 --- a/projects/Ultra/options +++ b/projects/Ultra/options @@ -87,12 +87,6 @@ # GOLD (Google Linker) support GOLD_SUPPORT="no" -# Graphite Support - GRAPHITE_SUPPORT="yes" - -# LOOP optimazion support - LOOP_SUPPORT="yes" - # Bootloader to use (syslinux / u-boot / atv-bootloader) BOOTLOADER="syslinux" diff --git a/projects/Virtual/options b/projects/Virtual/options index 27e8c7840b..be6e84c9e9 100755 --- a/projects/Virtual/options +++ b/projects/Virtual/options @@ -87,12 +87,6 @@ # GOLD (Google Linker) support GOLD_SUPPORT="no" -# Graphite Support - GRAPHITE_SUPPORT="yes" - -# LOOP optimazion support - LOOP_SUPPORT="yes" - # Bootloader to use (syslinux / u-boot / atv-bootloader) BOOTLOADER="syslinux"