Mono <[email protected]> writes: > Hallo Nicolas, > > it's a x86_64 architecture. A workaround might by to temporary move > away /usr/bin/{as,objcopy} installed by binutils and symlink > /usr/bin/xtensa-unknown-elf-{as,objcopy} to > /usr/bin/{as,objcopy}. Deinstalling binutils does not work though, > because then makepkg misses /usr/bin/strip. Thus it seems make -C > build/k2 and make -C build/magpie somehow dont use > /usr/bin/xtensa-unknown-elf-{as,objcopy}, but /usr/bin/{as,objcopy}. > > best regards
you can make the symlinks on the build dir during prepare(),for
instance
mkdir -p $srcdir/bin
ln -s /usr/bin/xtensa-unknown-elf-as $srcdir/bin/as
export PATH=$srcdir/bin:$PATH
so the pkgbuild doesn't need manual intervention
--
:{
pgp5_xeBTpkte.pgp
Description: PGP signature
_______________________________________________ Dev mailing list [email protected] https://lists.parabolagnulinux.org/mailman/listinfo/dev
