Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ cross-compiler from Windows to Linux [closed]

Are there any user friendly tools out there to cross-compile from Windows to Linux?

like image 415
neo_x3m Avatar asked Jan 22 '11 19:01

neo_x3m


People also ask

Can you compile in Linux and run on Windows?

Manually port your code from Linux and compile for Windows using Microsoft C++ (MSVC). This involves refactoring platform-independent code into separate libraries, and then re-writing the Linux-specific code to use Windows-specific code (for example, Win32 or DirectX APIs).

Does GCC support cross compilation?

GCC, a free software collection of compilers, can be set up to cross compile. It supports many platforms and languages. Cross-compiling GCC requires that a portion of the target platform's C standard library be available on the host platform.


1 Answers

crosstool-ng supports building cross-compilers with cygwin host.

Overview:

  • Install cygwin, with development packages
  • Download crosstool-ng
  • Extract the tarball (tar xvjf crosstool-ng*)
  • Run ./configure
  • When configure complains about a missing tool, go back to cygwin setup and install the corresponding package (e.g. flex, libtool, ncurses-devel) You'll need at least the following:
    • Devel/gperf
    • Devel/bison
    • Devel/byacc
    • Devel/wget
    • Devel/patch
    • Devel/make (GNU version)
    • Devel/automake 1.10+
    • Libs/libncursesw10
    • Libs/libncursesw10-devel
  • make
  • make install
  • Create a new directory for building the cross-compiler, e.g. /usr/src/cross-linux-gnu-root
  • Enable system-wide case sensitivity support in the registry (see https://superuser.com/questions/266110/how-do-you-make-windows-7-fully-case-sensitive-with-respect-to-the-filesystem#answer-842670)
  • Mount the directory case-sensitive (e.g. mount c:/cygwin/usr/src/cross-linux-gnu-root /usr/src/cross-linux-gnu -o binary,posix=1)
  • From inside the cross-compiler build directory, ct-ng menuconfig
  • In the menus, set target architecture to x86 (probably) and subarchitecture to i686 (avoids GCC 4.8 issues, thanks osm0sis), target kernel to linux, and target C library to glibc, and enable the C++ compiler.
  • To work around make 4.0 issues, also enable EXPERIMENTAL in Paths and misc options then, go in Companion tools (at top-level) and enable Build some companion tools and then make 3.81 (Thanks osm0sis)
  • wget has issues with the latest kernel.org certificates so use the .wgetrc method in this accepted answer: How do I fix certificate errors when running wget on an HTTPS URL in Cygwin? (Thanks osm0sis)
  • Currently 3 file patches are required to avoid further errors:
    • the _libintl_gettext error as mentioned in the comments
    • the byteshift headers, and
    • the ELF headers (Thanks Duncan Calvert & osm0sis)
  • ct-ng build

Of course, this is NOT going to enable you to build linux applications from inside Visual Studio. (VS2010 and later let you build with other toolchains such as gcc, but you'd need an appropriate toolchain description in addition to the cross-compiler built by crosstool-ng). But you'll have a working g++-linux-gnu, which you can either run directly or using a Makefile.

NOTE: Building the cross-compiler takes a LONG time. osm0sis has provided a prebuilt gcc 4.8.1 here, along with his notes on building the cross-compiler (used to update this answer).

like image 169
Ben Voigt Avatar answered Sep 21 '22 23:09

Ben Voigt