17 Mar 2016, 05:59

Okay, so after a while, I had come up with this as my command as ${FLAGS} wasn't working, I had to write out previous flags options to share them with other flags.  I have four cores that I'm trying to use on my host PC, so don't think it's just because of the RPi2. make -j4 ARCH=armv7ve CC=arm_linux_gnueabihf CPUFLAGS="-m32 -mthumb-interwork -mcallee-super-interworking -mcaller-super-interworking" GRAPHITE="-mthumb-interwork -mcallee-super-interworking -mcaller-super-interworking -m32 -floop-interchange -floop-strip-mine -floop-block -fgraphite-identity" CPPFLAGS="-m32 -floop-interchange -floop-strip-mine -floop-block -fgraphite-identity -O3 -fuse-ld=gold -mtls-dialect=gnu2 -flto=4 -pipe -fuse-linker-plugin -ffat-lto-objects -freciprocal-math -ftree-vectorize" CFLAGS="${CPPFLAGS}" CXXFLAGS="${CFLAGS}" LDFLAGS="${CFLAGS} -fuse-linker-plugin" USE="graphite lto" The errors that come about are: /bin/bash: arm_linux_gnueabihf: command not found Makefile:702: recipe for target 'array.o' failed make[4]: *** [array.o] Error 127 make[4]: *** Waiting for unfinished jobs.... /bin/bash: arm_linux_gnueabihf: command not found Makefile:702: recipe for target 'builtin.o' failed make[4]: *** [builtin.o] Error 127 /bin/bash: arm_linux_gnueabihf: command not found /bin/bash: arm_linux_gnueabihf: command not found Makefile:702: recipe for target 'awkgram.o' failed make[4]: *** [awkgram.o] Error 127 Makefile:702: recipe for target 'cint_array.o' failed make[4]: *** [cint_array.o] Error 127 Makefile:742: recipe for target 'all-recursive' failed make[3]: *** [all-recursive] Error 1 Makefile:562: recipe for target 'all' failed make[2]: *** [all] Error 2 package/pkg-generic.mk:195: recipe for target '/home/d337z/Desktop/Work/recalbox-buildroot-rpi2/output/build/host-gawk-4.1.3/.stamp_built' failed make[1]: *** [/home/d337z/Desktop/Work/recalbox-buildroot-rpi2/output/build/host-gawk-4.1.3/.stamp_built] Error 2 Makefile:36: recipe for target '_all' failed make: *** [_all] Error 2 It's not an error with the program itself as far as I can tell, but I wouldn't mind knowing what I'm doing wrong and what I should try to do it right.  I have the programs installed as best I can tell.  Synaptic shows everything involving gnueabihf is installed.  So I'm at a loss here. I'm really thinking that I can contribute to this project so much if I can just figure out this darn cross-compiling thing. Well, thanks!