[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: ./configure in debian/rules



Am Donnerstag, 9. März 2006 23:32 schrieb Steve Langasek:
> Um, the native target for Debian systems is i486-linux-gnu, not
> i686-linux-gnu -- the symlink i486-linux-gnu-gcc-4.0 *does* exist.  If
> you're using anything other than i486-linux-gnu as your host string for a
> Debian package, then aside from just not working due to the missing
> symlinks, it won't be policy-compliant.
>
> We don't have a cross-compiling environment for an i686 target, sorry. :)

I guess this can be emulated with a small shell script:
---- ~/bin/i686-linux-gcc ----
#!/bin/sh
PROG=`echo $0 | cut -f 3 -d-`
ARCH=`echo $0 | cut -f 1 -d-`
exec i486-linux-$PROG -march=$ARCH "$@"
------------------------------

But it's probably not Debian's duty to provide such things :)

HS

-- 
Mein GPG-Key ist auf meiner Homepage verfügbar: http://www.hendrik-sattler.de
        oder über pgp.net

PingoS - Linux-User helfen Schulen: http://www.pingos.org



Reply to: