major changes to improve toolchain and crossbuild concept, still in devel!
[hdw-linux/hdw-linux.git] / scripts / optimization
1 # hdw - linux ./scripts/optimization 
2 #
3 # author: hackbard@hackdaworld.dyndns.org
4 #
5 # this script defines optmization flags
6
7
8 # the tools
9 export CC="${hdw_arch_prefix}gcc"
10 export CPP="${hdw_arch_prefix}g++"
11 export CXX="${hdw_arch_prefix}c++"
12 export AS="${hdw_arch_prefix}as"
13 export STRIP="${hdw_arch_prefix}strip"
14 export LD="${hdw_arch_prefix}ld"
15 export GASP="${hdw_arch_prefix}gasp"
16 export AR="${hdw_arch_prefix}ar"
17 export RANLIB="${hdw_arch_prefix}ranlib"
18 export NM="${hdw_arch_prefix}nm"
19 export KCC="${hdw_arch_prefix}kcc"
20
21 # flags - edit this at own risk
22 export CFLAGS="${hdw_cflags}"
23 export CPPFLAGS="${hdw_cflags}"
24 export CXXFLAGS="${hdw_cflags}"
25 # export ASFLAGS
26 # export ARFLAGS
27 # export LDFLAGS
28 # export LD_LIBRARY_PATH 
29 # export LD_PRELOAD
30