Tagged Questions
Scratchbox is a cross-compilation toolkit designed to make embedded Linux application development easier. It also provides a full set of tools to integrate and cross-compile an entire Linux distribution.
2
votes
1answer
59 views
Cross compile when using apt-get
I am currently using Scratchbox2 for cross compiling. I can do ./configure, make install from my toolchain prompt:
[SB2 mapping-armv7 armv7]
Is there a way to cross compile while using apt-get ...
2
votes
1answer
94 views
Using OSSOLOG in scratchbox (maemo development)
I am building a sharing-service for maemo5. In the example plugin they are calling ULOG_INFO_L at a lot of places, so I have adopted this for my service as well. The problem is that I can't find where ...
2
votes
1answer
1k views
Scons in Scratchbox: Can't find g++
I've been using sbox with a Make-based codebase with no problems. Now
I'm using a scons-based codebase, and am getting some odd problems.
It seems that within scratchbox, scons can't find g++. For ...
2
votes
1answer
544 views
maemo scratchbox compiler error with gtk+-2.0
I'm trying to follow section 3.4.2, starting on page 31 of this manual. However, as I have configured my target to be DIABLO_ARMEL rather than DIABLO_X86, I have gotten different results for this ...
2
votes
1answer
2k views
My scratchbox 2 installation is using an ARM gcc build to compile for the ARM target. How do I fix this?
I'm using scratchbox 2, the maemo development cross-compilation environment. When compiling code for the ARM target, I think scratchbox 2 is using the native ARM gcc compiler, which runs very slow on ...
1
vote
0answers
557 views
mono ./configure --host=arm-linux?
i tried some cross-compiling mono (2.8) with the ./configure --host=arm-linux option, running on an x86 ubuntu.
sometimes i get this error:
checking for arm-linux-gcc... gcc
checking for C compiler ...
1
vote
0answers
246 views
scratchbox arm cannot execute c compiled program
Hi i set up a scratchbox with a arm-linux-gnueabi-gcc toolchain and qemu emulator.
When i want to run inside scratchbox [sbox-arm:/]> a ./configure script (from a mono tarball) i am getting the ...
1
vote
2answers
245 views
is it binary compatible for emdebian and android?
the Android ndk is hard to use for the old autoconf based code, so i employed scratchbox2/emdebian to have a complete build environment. can i build a shared library in emdebian (arch is armel) and ...
1
vote
1answer
282 views
Qt Maemo resources screwed up in Scratchbox 1 for the armel target
When I compile my Qt Maemo application in Scratchbox 1, all of the image resources appear completely messed up and corrupted, and the program runs extremely slow. This only happens for the armel ...
0
votes
2answers
44 views
Scratchbox2 returns “Implicit declaration of function getline”, among other weird behaviour
I'm trying to cross compile my application for the maemo environment (GNU).
When compiling the application normally, everything works fine, however when it's compiled through sb2 the following ...
0
votes
2answers
722 views
gnu make: How to create a directory in a makefile when mkdir -p is not available?
I have a makefile which does the usual directory creation:
$(Release_target_OBJDIR)/%.o: %.cpp
mkdir -p $(dir $@)
$(COMPILE.cpp) $< $(CFLAGS) $(INCLUDES) -o $@
Unfortunately when I run ...