Cross-compiling is the act of using a tool chain on one platform (the host) to build software to run on a different platform (the target).
0
votes
1answer
16 views
Trouble building a MIPS compatible C static library
I'm trying to build a C static library (.a) that is compatible with a MIPS processor (I'm working in an embedded system).
To do so I tried to execute the following commands (obs: I'm using the ...
0
votes
0answers
8 views
Openssl - cross compiled for Linux gives Bus error
I have a linux device - to which i cross compiled openssl with the following commands:
./Configure linux-generic32 shared –DB_ENDIAN --prefix=/home --openssldir=/home
make CC=m68k-linux-gcc ...
0
votes
0answers
9 views
bin/arm-none-eabi-gcc vs. arm-none-eabi/bin/gcc
What's the difference between them?
I took this example from CodeSourcery toolchain but I've met similar structure in other toolchains.
Both of them appear to have the same size. On my Linux host ...
0
votes
1answer
25 views
building /lib/modules/$(uname -r)/build while compiling a kernel
I am cross-compiling 3.4.0 kernel for an embedded device. Then I would like to install compat-wireless drivers which require /lib/modules/3.4/build directory and sub-files. Could anyone explain how ...
0
votes
1answer
45 views
cross compile for armv5, but it creates v7 binary
I managed to creata an object file for arm926ej-s
I am using debian arm on qemu
arm-linux-gnueabi-gcc-4.4 -static -O -c -mcpu=arm926ej-s hello.c -o hello
...
-2
votes
0answers
33 views
Building a Linux distro [closed]
Today was a terrible day at office, failed to compile a 'hello world.c' for an arm machine. I gave up that.
But After noon I found a blog to compile kernal here
I compiled it successfully, and booted ...
0
votes
0answers
22 views
C - BIO_get_fd() always fails to get a valid FD
Why does BIO_get_fd() always fail to get a valid FD in the following piece of code?
SSL *pSsl = NULL;
int nRet;
int fdSocket;
fd_set connectionfds;
struct timeval timeout;
BIO_get_ssl(pBio, ...
0
votes
0answers
21 views
cross compiling sqlite for arm arm926ej-s
What i did is
Downloaded and extracted the sqlite
then on Ubuntu
$ sudo ./configure --host=arm-linux CC=arm-linux-gnueabi-gcc AR=arm-linux-gnueabi-ar STRIP=arm-linux-gnueabi-strip ...
1
vote
3answers
78 views
+100
Symbols not found for architecture i386 - But works for iOS device
I am facing a strange problem here, I am trying to integrate the libkml C++ project sources into my iOS project. The project compiles independently fine, but when it comes to linking through this line ...
0
votes
1answer
18 views
CMake: Setting correct compiler options for one platform only
I use CMake to generate build files (makefile or project files) across Windows, OSX and Linux, with C and C++ compilers native to those platforms. On Windows I gnerate VS 2010 project, and in Release ...
0
votes
1answer
23 views
How to see which header files were used for gcc/g++ compilation
I have two binaries that were simple c++ programs compiled on a Linux machine. The first binary - call it my_native_prog - uses the build tools (g++, as, etc.), libraries, and headers that come ...
0
votes
1answer
32 views
Compiling expat for iOS - Command /bin/sh failed with exit code 2
PS: My earlier question was different, that could be fixed, now I am running into new problem
I am trying to import the libkml library into my iOS project. I realised that expat libraries cannot be ...
0
votes
1answer
37 views
Mono Compile Stuck on mscorlib
I am completely stumped. I am trying to compile Mono using a eglibc toolchain generated using Buildroot and Crosstool-NG. I cannot build any versions after 3.0.3. Version 3.0.3 builds and executes ...
1
vote
1answer
29 views
Compiling expat for iOS - Command /bin/sh failed with exit code 77
I am trying to import the libkml library into my iOS project. I realised that expat libraries cannot be linked (?) and so have to build the expat sources for it again.
I found a SO link where a ...
0
votes
1answer
26 views
Finding shared library dependencies when linking executable
I am attempting to cross-compile gstreamer for ARM hosts on a Ubuntu 12.04 (32-bit) build system. None of what I'm about to describe happens with the i686-linux-gnu GCC. I am compiling on Ubuntu ...
0
votes
0answers
29 views
Cross Compiling GLib for MIPS results in “No iconv() implementation” configure error
I'm trying to cross-compile GLib 2.37.0 for a MIPS system by following the directions here. I have a mips.cache file with the following contents:
glib_cv_stack_grows=no
glib_cv_uscore=no
...
0
votes
0answers
8 views
Adding C++ support to external toolchain in buildroot
I'm using buildroot version 2011.11 for cross compiling my application. I'm trying to add oprofile to my application, and oprofile depends on c++ support. But when I checked using make menuconfig, ...
0
votes
0answers
38 views
Compile POCO C++ for Android on Windows
I am trying to compile an application for android on windows and I am only able to find the steps to compile POCO C++ for android on Linux: http://pocoproject.org/docs/99300-AndroidPlatformNotes.html.
...
2
votes
2answers
44 views
OpenCV Capture from Camera Results in Noisy-like Image
I am using OpenCV on an embedded target board (FriendlyARM mini6410, processor arm 1176 running linux kernel 2.6.38).
I compiled OpenCV 2.4.4 library using toolchain provided for the board, found in ...
1
vote
1answer
42 views
Cross compiling with automake
I'm trying to cross compile a project and a library it depends on for use on an embedded system. Both the application and the dependency use automake. I was able to compile the library without much ...
0
votes
2answers
40 views
Android cross compiling C with no configure file
I've recently started to cross compile a couple of C applications for Android. I've successfully done this for image conversion software using the following pseudo-instructions:
Build the Android ...
0
votes
2answers
56 views
Cross Compile OpenCV Cannot Find libv4l1
I am following tutorial from this blog about cross compiling opencv for ARM.
My host system is Ubuntu 12.04 64 bit and compiler is gcc-arm-linux-gnueabi 4.5.1.
When running make, I get the following ...
1
vote
0answers
36 views
cross-compiling to Pandoboard
does anyone knows how to cross-compile .cpp (c++ files) to pandaBoard's OMPA *arm-cortexA9* processor.
i've used OpenCv.
i have my toolchain installed, i have OpenCV cross-compiled to arm.
if anyone ...
5
votes
0answers
37 views
Cross-compiling - retrieve target CPU and version
I'm cross-compiling for VxWorks using cmake. When I run cmake the first time I have to provide informations about compiler, target OS etc..
In the cross-compile dialogue there are three target system ...
0
votes
1answer
22 views
How do I use bitbake to cross compile this simple program for beagleboard?
I am trying to understand how I compile programs that will run on my beagle board. I need to compile some complex programs that I currently run in fedora, but understanding how to use Open Embedded ...
0
votes
0answers
23 views
Cross compiling for raspberry - libs not found
I'm installing FreePascal/Lazarus on Ubuntu 12.4, and using it to cross compile for the raspberry. My work is based on the wiki page : http://wiki.lazarus.freepascal.org/Setup_Cross_Compile_For_ARM.
...
0
votes
1answer
46 views
How do I cross compile a single module?
What I need to cross compile is the USB gadget serial driver (g_serial.ko). I have my toolchain installed and checked out the sources from kernel.org.
Now what to do to just compile that single ...
1
vote
1answer
35 views
Cross compiler error: reference 'm_memoryManager' cannot be decalred 'mutable' [-fpermissive]
I am compiling for Arm11 and use xalanc. I get a bunch of these:
In file included from /xx/include/xalanc/DOMSupport/DOMServices.hpp:39:0,
from /xx/include/xalanc/XPath/XObject.hpp:39:43,
from ...
0
votes
0answers
25 views
error on building cross gcc - "exec -I
I am getting an error on building a cross compile version of GCC:
/c/projects/VO/gcc/gccobj/./gcc/xgcc -B/c/projects/VO/gcc/gccobj/./gcc/ -B/usr/l
ocal/i686-linux-gnu/bin/ ...
1
vote
2answers
53 views
Cross-compiling OpenGL / glew on linux for windows
I'm trying to cross-compile a small test opengl/glew program and I get linker errors from undefined references.
$ /usr/bin/i486-mingw32-g++ -I/usr/i486-mingw32/include -L/usr/i486-mingw32/lib/ ...
0
votes
1answer
91 views
Error executing cross-compiled codes in raspberry pi
I am having problems with a Qt GUI application I created. Basically I created the application in my ubuntu to check if it compiles and works properly, however, if I set up the cross compiler (followed ...
0
votes
4answers
66 views
Cross Compile or Compile Native for CPU Arch
When writing software that is CPU arch dependent, such as C code running on x86 or C code running on ARM cpus. There generally is two ways to go about compiling this code, either Cross-Compile to the ...
0
votes
0answers
40 views
Enabling gcc-multilib manually after successful gcc installation on Debian system?
I installed gcc-4.7.2 on my i686 Debian system successfully but i don't know how to enable gcc-multilib after installation.
I installed gcc-4.7.2 on my debian system with configuration ...
0
votes
1answer
137 views
Raspberry Pi: Embedded Programming Exercise, Getting Started
First, I am following this tutorial here (http://www.cl.cam.ac.uk/projects/raspberrypi/tutorials/os/).
In the first exercise you learn about addressing the GPIO pin that is responsible for turning on ...
0
votes
1answer
85 views
Compiling U-BOOT bootloader on x86
I have download and extracted u-boot-1.1.6 on Linux ubuntu. I just want to compile the source code using GCC(not targeting cross compilation for any embedded platform).
I tried running provided ...
2
votes
1answer
56 views
generating 64 bit code on 32bit debian system
Could you please describe that how have you installed gcc-multilib and g++-multilib on 32bit debian machine to generate 64 bit code?
I installed gcc-4.7.2 on my 32bit debian system(and also installed ...
0
votes
0answers
44 views
How to build lib clang to run on Linux ARM device and compile for AVR?
I have clang sources from official svn repo and x86 mac.
I need to compile libclang.so:
1. for working on Linux ARM device
2. compile code for AVR
I believe it's combination of 'target' and 'host' ...
0
votes
1answer
88 views
Clang Cross Compiling for Windows Phone ARM target
I would like to compile a program written in C using Clang for 'Windows Phone' ARM target.
Does anyone have experience with it?
What is a better approach?
1) Building on a host running Windows 8 ...
0
votes
1answer
26 views
cross-compilation using mingw32 and gmp
I am currently trying to cross-compile a c++ code I wrote which worked perfectly fine on Linux.
I installed mingw32, and compiled libgmp as a windows library ( .a ) using something like that :
...
0
votes
2answers
33 views
buildroot compile of open vm tools
I was trying to compile open-vm-toos package (9.0.0-782409) under buildroot env and it fails in one file. Below is log of the error. I narrowed it down on something to do with locale includes. Tried ...
1
vote
0answers
48 views
Creating a cross-compiler environment to build package binaries
I have the feeling that this would involve major nitty-gritty-details-stuff, nevertheless I'd like to give it a try:
Actual question
What do I need to do to set up an cross-compiler environment that ...
1
vote
2answers
80 views
C two platform compiling
I want to run some C code targeted to run on a unique PIC micro based hardware setup in a PC windows environment as well. The objective is to emulate multiple instances of the hardware without the ...
1
vote
0answers
35 views
error when running a— cross-compiled executable
I have cross compiled vscpd program
Following is the backtrace from GDB. Here i am not getting what is causing this SIGILL
which terminates the program.
Does this error means --> libcrypto.so.1.0.0 ...
1
vote
1answer
97 views
Cross compiler arm-unknown-linux-gnueabi-gcc does not find GLES libraries
So when compiled with gcc my code compiles successfully with the GLES libraries and headers. When I want to compile using arm-unknown-linux-gnueabi-gcc for the RPi it can't find GLES2/gl2.h.
Does ...
1
vote
1answer
57 views
Java Signed Applet on Java version 6
My Java signed applet which is signed by Netbeans works well on Java's which version 7.
But on version 6 it does not work.How can i solve this problem.Is Java version 6 does not allow this?.I hope you ...
1
vote
0answers
20 views
chroot a scratchbox2 session?
I am trying to set up a scratchbox2 configuration to cross-compile rasberry pi software using a root partition that contains a copy of the real raspian distribution. This seems to work OK overall as ...
1
vote
2answers
99 views
ARM compiler with autoconf
I am trying to compile some files for ARM architecture with autoconf. I am compiling them in Ubuntu 12.04 and the target system is a BeagleBoard XM.
I run the following command:
./configure ...
0
votes
0answers
31 views
Missing crt0.o file with cross-i386 gcc
I can't find out why crt0.o or crt1.o is not provided for i386 targets by newlib as it is the case for powerpc, arm, etc. targets.
ld requires it (and so do I to call static constructors).
4
votes
2answers
235 views
std::shared_future on Raspberry Pi toolchain
I'm trying to cross-compile a large project for the Raspberry Pi. I'm using a toolchain built by crosstool-ng, gcc version 4.7.3. The compilation chokes when it sees std::shared_future. I get this ...
0
votes
0answers
14 views
Cross-compiling ASM with Linaro for Android
I am a noob to compiling software directly, moreover at doing it with ASM. I have read that Linaro is quite popular for compiling native code to Android devices and i have been wondering if it has ...






