View Single Post
Posts: 839 | Thanked: 3,386 times | Joined on Mar 2009
#2
It seems, that compiler on fremantle autobuilder is not handling x86 targets.

It will give linking error for every library I have tried, e.g.
Code:
/scratchbox/compilers/cs2007q3-glibc2.5-i486/bin/sbox-i486-pc-linux-gnu-ld: cannot find -llua5.
Easiest workaround is (on debian/rules)
Code:
ifneq (,$(findstring arm-linux,$(DEB_BUILD_GNU_TYPE)))
    make
else
    touch name_of_binary
endif
and then, of course, packages are useless on x86.
 

The Following 3 Users Say Thank You to AapoRantalainen For This Useful Post: