I’ve trying to cross compile an app for iMX6 CPU using linaro-gcc and a dedicated rootfs. The app might be linked to OpenVG and the standard pthread libraries. It compiles fine but the linker failed to link to the OpenVG library so I added the linker switch -L/home/ae/Documents/toradex/col-imx6/colibri-imx6-sdk/usr/lib and now it links to the OpenVG library. But since then, it
Tag: cross-compiling
Run an executable from Ubuntu to Debian
I have a project in C++, but my data is just too big for my computer. So, I tried to build my project in a desktop in our lab, but the compiler is too old (4.3.5 and I had 4.8.1 when I developed my code). I do not have the rights to upgrade and the people that do have the
Build Qt application for Linux in Windows using Qt Creator
I want to run a Qt application in Linux which is compiled on Windows using Qt Creator. I tried googling but I did not get any answers regarding Qt creator. I found for Visual studio. Can anyone please let me know if this can be done in Qt Creator in Windows7 ? Do I need to install any other compilers
Cross compiling for Linux on Windows (linker output file won’t run as executable on linux and has undefined symbols)
I’m trying to set up a cross compile for linux ELF files on Windows using clang and a version of ld which has been compiled to have elf64 support. The clang compile part is fine, it outputs ELF obj files that work when linked on linux. My test case cpp is just main containing a printf statement. To attempt a
arm-linux-gnu-gcc fatal error: stdio.h: No such file or directory
These are the files in /usr/bin I am following this tutorial to cross compile a simple C program: Now I save this is a .c file and try to compile it; This is hapening only when I am using arm-linux-gnu-gcc. But when I am using gcc, it works fine. Why is arm-linux* giving this error? Update Verbose Host configuration Redhat
How can I setup linux to compile FORTRAN code into windows binaries?
I’m working on a FORTRAN project and I would like to build all of the binaries that I want to maintain on a linux machine that is dedicated for automated builds. I have successfully used mingw to build 32-bit and 64-bit binaries from C source for windows machines on the linux machine with the following packages on Ubuntu. Then I