wok rev 15984

tcc: improve arm support but still not cross compiling
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 02 00:29:29 2014 +0100 (2014-03-02)
parents e68abb67e0b5
children a6a5bf468a61
files tcc/receipt
line diff
     1.1 --- a/tcc/receipt	Sat Mar 01 23:51:38 2014 +0100
     1.2 +++ b/tcc/receipt	Sun Mar 02 00:29:29 2014 +0100
     1.3 @@ -23,11 +23,17 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 -	cd $src
     1.8 -	./configure \
     1.9 -		--prefix=/usr \
    1.10 -		--enable-cross \
    1.11 -		$CONFIGURE_ARGS &&
    1.12 +	case "$ARCH" in
    1.13 +		arm)
    1.14 +			./configure \
    1.15 +				--prefix=/usr \
    1.16 +				--cross-prefix=arm-slitaz-linux-gnueabi- \
    1.17 +				--cpu=armv4l ;;
    1.18 +		*)
    1.19 +			./configure \
    1.20 +				--prefix=/usr \
    1.21 +				--enable-cross ;;
    1.22 +	esac &&
    1.23  	make && make test &&
    1.24  	make DESTDIR=$DESTDIR install
    1.25  }