Browse Source

Clifford Wolf:


			
			
				rocklinux
			
			
		
Clifford Wolf 21 years ago
parent
commit
d7ad0650e3
2 changed files with 7 additions and 0 deletions
  1. +6
    -0
      package/base/gcc3/parse-config
  2. +1
    -0
      scripts/config.in

+ 6
- 0
package/base/gcc3/parse-config

@ -99,6 +99,12 @@ esac
var_append GCC_WRAPPER_APPEND " " "$ROCKCFG_C_FLAGS"
# Compile (i.e. link) all bins statically
#
if [ "$ROCKCFG_STATIC" = 1 ]; then
var_insert GCC_WRAPPER_INSERT " " "-static"
fi
# Compile with no exceptions or rtti, gcc itself must support both
#
if [ "$ROCKCFG_LIMITCXX" = 1 ] && [[ $pkg != gcc* ]] ; then

+ 1
- 0
scripts/config.in

@ -362,6 +362,7 @@ break packages!'
lazy 'Lazy optimisiation (for debugging binaries)'
bool 'Create binaries with debug symbols' ROCKCFG_DEBUG 0
bool 'Create statically linked binaries' ROCKCFG_STATIC 0
bool 'Disable exceptions and rtti in C++' ROCKCFG_LIMITCXX 0
bool 'Enable c-compiler multilib support' ROCKCFG_MULTILIB 0

Loading…
Cancel
Save