Return to site

Cross Compile For Mac Os On Linux

broken image


Darwin/Mac OS X Cross-Compiler for Linux. This is a set of tools for creating a Linux-based distcc node for compiling Mac OS X software. It is comparable to XCode 2.2.1 (GCC 4.0.1 build 5250,. Clang/LLVM is a cross compiler by default and is now available on nearly every Linux distribution, so we just need a proper port of the cctools/ld64 and the macOS SDK. OSXCross includes a collection of scripts for preparing the SDK and building the cctools/ld64. Cross-compiling on windows for linux free download. Mpv-i686-cross-compiling-MinGW32-Doc This project aims at setting up a MinGW-w64 Toolchain on a pure Linux-32 Bits system to cross-compil. Mac OS X or Linux. Tor Browser enables you to use Tor on Windows.

  1. Cross Compile For Mac Os X On Linux
  2. Cross Compile For Mac Os On Linux Command
  3. Linux Mac Os

In my previous posts, I came to the realization that the Raspberry Pi is not very fast! This results lots of chair spinning time while waiting for my projects to compile. A

Scratchbox is a toolkit for Linux cross-compilation to ARM and x86 targets; Grand Unified Builder (GUB) for Linux to cross-compile multiple architectures e.g.:Win32/Mac OS/FreeBSD/Linux used by GNU LilyPond; Crosstool is a helpful toolchain of scripts, which create a Linux cross-compile environment for the desired architecture, including.

After I did some brief research, I came across crosstool-ng. It enagbles anyone to create a toolchain to compile Raspberry Pi code directly on a (much faster) Macbook.

If you are unfamiliar with the process of compiling a toolchain on your own computer, let me be frank: it's not fun.

Luckily, with this post you can get yours working in no time.

Update 8/29/16: I have updated this tutorial in several places for newer systems. I'm currently running a Macbook Pro with 10.11.6.

Note 8/29: This tutorial now is focused on the Raspberry Pi 3 B. Steps can be tweaked to account for older Pis

Outlook for mac book. So without further ado lets do this thing.

Before we get started

Before we start anything I recently compiled the toolchain for RPi3. It will save you a whole bunch of time to download it here rather than go through this procedure.

These files include:

  • Linux Kernel: 4.3

  • hardfp: yes

  • arch: armv8-a

  • proc: cortex-a53

    UTorrent is an efficient BitTorrent client for Windows from the originator of the BitTorrent protocol.

Torrent client for xp
Most of the features present in other BitTorrent clients are present in uTorrent, including bandwidth prioritization, scheduling, RSS auto-downloading, and Mainline DHT. Additionally, uTorrent supports the protocol encryption joint specification and peer exchange.

  • glibc 2_22

  • gcc 5.2.0

  • binutils 2.25.1

  • gdb 7.10

  • gmp 6.0.0

  • mpfr 3.1.3

  • mpc 1.0.3

  • For those who want to continue for giggles, by all means…

    Install Homebrew

    You will need Hombrew to install some dependencies. Apple usb ethernet adapter. If you haven't already installed it you can run the command below:

    Install crosstool-ng

    Cross

    Note: a few other dependencies get installed when crosstool-ng is compiled. Be prepared to wait a little while everything assembles.

    Install gettext

    Note: this is more of a precaution then a requirement. I believe by the end of this process that this was not necessary for getting crosstool-ng to work.

    Create two case-sensitive disk images

    Open up Disk utility. Click on the New Image button.

    ![Create a new disk image using Disk Utility on OSX.](images/diskutility-newimage.jpg)

    1. You need a disk at least 15GB in size. This will house all the source code and object files when all said and done.

    ![Create case sensitive OSX disk image.](images/create-disk-image.jpg)

    2. The next disk can be exactly the same but only 250MB in size. (When fully compiled and compressed everything turned out to be around 107MB)

    Note 8/29: for some reason there is a bug on OSX which prevents you from formating a case sensitive drive in Disk Utility. So create a non-case sensitive image and format it to a case sensitive one. The file system needs to be case sensitive.

    Note* 8/29: Also, should you make a disk that is not the correct size, you can invoke the resize command to fix it!

    Install GNU grep

    Crosstools relies on the use of GNU grep. The grep built with OSX is not 100% exactly the same. So, let's build it!

    Note 8/29: this now can be done while installing crosstool-ng using the --with-grep option.

    Edit paths.sh file

    My paths.sh file was located here:

    I changed the grep line from:

    To:

    Note 8/29: likely can be avoided with the note above. You can also edit your .bash_profile to temporarily set which grep to use

    Load the Linux/GNU option

    This will load a general Linux/GNU config. We'll end up replacing the config but it gives us a good starting point.

    Note 8/29: this is a better starting point than my original suggestion. The config file below will change the remaining settings to accomodate for the different processor.

    Install config file

    Download the config file here.

    You will have to copy it to your case sensitive disk image and rename it to .config.

    Modify the config file

    Run the following in your working directory.

    Change the following as needed. Note: This only needs to be changed if you change the names of the .dmg images.

    Paths and misc options

    Note: all of these are under the ** Paths ** section.

    • Local tarballs directory

      I used /Volumes/xtools-build-env/src. Make sure you set yours to your setup.

    • Working directory

      I used /Volumes/xtools-build-env/.build. Make sure you set yours to your setup.

    • Prefix directory

      I used /Volumes/xtools/${CT_TARGET}. Make sure you set yours to your setup.

    Note: the next few settings are under the ** Extracting ** section.

    • Stop after extracting tarballs

      This option should be checked.

    • Parallel jobs

      Note 8/29: new version already has this value set. You can leave it be.

    Download and extract the packages

    Run the following command:

    The build command will stop after extracting all the sources.

    Change source file

    In ./.build/src/binutils-2.25.1/gold/gold-threads.cc you will need to change the file at line 284. Here is the before and after code blocks:

    Change it to:

    Update the ulimit

    Ulimit controls the amount of resources allowed by a shell instance. In this case we need to increase this limit in order to prevent compilation errors.

    Undo some the extract only config option

    Undo one of the config settings we changed earlier. Open up:

    Paths and misc options.

    Note: the next few settings are under the ** Extracting ** section.

    • Stop after extracting tarballs

      This option should be unchecked.

    Begin the build!

    Run:

    Play the waiting game

    Depending on how fast your setup is it may take a few hours to compile fully. If you're impatient you can always get the binaries I just compiled here

    In the end

    By the time it's done doing its thing you should have a fully capable cross platform toolchain for the Raspberry Pi! (Woot) An easy way to test it is to do the following:

    (Hit ctrl-d to escape)

    Copy test over to your Raspberry Pi.

    Then ssh in and run the test executable

    Other Notes

    New notes as of 8/29 are as follows:

    STOP/RESTART Crosstools now has a nifty stop and restart feature. Should a build break on a particular sub-component, you can actually fix the issue and continue the build from where it broke. It saves a ton of time. In order to take advantage of the feature you need to enable CT_DEBUG_CT_SAVE_STEPS in your .config

    Then you can invoke the STOP or RESTART command:

    ct-ng list-stepsct-ng build RESTART=cc_core_pass_1

    Building Static Becuase OSX does not build based on static libraries we need to make sure those options are disabled. This is already done in my config file but for those who are interested here are the flags:

    Thank you to Rolando for posting this in the comments!

    Many thanks

    Cross Compile For Mac Os X On Linux

    Linux
    Most of the features present in other BitTorrent clients are present in uTorrent, including bandwidth prioritization, scheduling, RSS auto-downloading, and Mainline DHT. Additionally, uTorrent supports the protocol encryption joint specification and peer exchange.

  • glibc 2_22

  • gcc 5.2.0

  • binutils 2.25.1

  • gdb 7.10

  • gmp 6.0.0

  • mpfr 3.1.3

  • mpc 1.0.3

  • For those who want to continue for giggles, by all means…

    Install Homebrew

    You will need Hombrew to install some dependencies. Apple usb ethernet adapter. If you haven't already installed it you can run the command below:

    Install crosstool-ng

    Note: a few other dependencies get installed when crosstool-ng is compiled. Be prepared to wait a little while everything assembles.

    Install gettext

    Note: this is more of a precaution then a requirement. I believe by the end of this process that this was not necessary for getting crosstool-ng to work.

    Create two case-sensitive disk images

    Open up Disk utility. Click on the New Image button.

    ![Create a new disk image using Disk Utility on OSX.](images/diskutility-newimage.jpg)

    1. You need a disk at least 15GB in size. This will house all the source code and object files when all said and done.

    ![Create case sensitive OSX disk image.](images/create-disk-image.jpg)

    2. The next disk can be exactly the same but only 250MB in size. (When fully compiled and compressed everything turned out to be around 107MB)

    Note 8/29: for some reason there is a bug on OSX which prevents you from formating a case sensitive drive in Disk Utility. So create a non-case sensitive image and format it to a case sensitive one. The file system needs to be case sensitive.

    Note* 8/29: Also, should you make a disk that is not the correct size, you can invoke the resize command to fix it!

    Install GNU grep

    Crosstools relies on the use of GNU grep. The grep built with OSX is not 100% exactly the same. So, let's build it!

    Note 8/29: this now can be done while installing crosstool-ng using the --with-grep option.

    Edit paths.sh file

    My paths.sh file was located here:

    I changed the grep line from:

    To:

    Note 8/29: likely can be avoided with the note above. You can also edit your .bash_profile to temporarily set which grep to use

    Load the Linux/GNU option

    This will load a general Linux/GNU config. We'll end up replacing the config but it gives us a good starting point.

    Note 8/29: this is a better starting point than my original suggestion. The config file below will change the remaining settings to accomodate for the different processor.

    Install config file

    Download the config file here.

    You will have to copy it to your case sensitive disk image and rename it to .config.

    Modify the config file

    Run the following in your working directory.

    Change the following as needed. Note: This only needs to be changed if you change the names of the .dmg images.

    Paths and misc options

    Note: all of these are under the ** Paths ** section.

    • Local tarballs directory

      I used /Volumes/xtools-build-env/src. Make sure you set yours to your setup.

    • Working directory

      I used /Volumes/xtools-build-env/.build. Make sure you set yours to your setup.

    • Prefix directory

      I used /Volumes/xtools/${CT_TARGET}. Make sure you set yours to your setup.

    Note: the next few settings are under the ** Extracting ** section.

    • Stop after extracting tarballs

      This option should be checked.

    • Parallel jobs

      Note 8/29: new version already has this value set. You can leave it be.

    Download and extract the packages

    Run the following command:

    The build command will stop after extracting all the sources.

    Change source file

    In ./.build/src/binutils-2.25.1/gold/gold-threads.cc you will need to change the file at line 284. Here is the before and after code blocks:

    Change it to:

    Update the ulimit

    Ulimit controls the amount of resources allowed by a shell instance. In this case we need to increase this limit in order to prevent compilation errors.

    Undo some the extract only config option

    Undo one of the config settings we changed earlier. Open up:

    Paths and misc options.

    Note: the next few settings are under the ** Extracting ** section.

    • Stop after extracting tarballs

      This option should be unchecked.

    Begin the build!

    Run:

    Play the waiting game

    Depending on how fast your setup is it may take a few hours to compile fully. If you're impatient you can always get the binaries I just compiled here

    In the end

    By the time it's done doing its thing you should have a fully capable cross platform toolchain for the Raspberry Pi! (Woot) An easy way to test it is to do the following:

    (Hit ctrl-d to escape)

    Copy test over to your Raspberry Pi.

    Then ssh in and run the test executable

    Other Notes

    New notes as of 8/29 are as follows:

    STOP/RESTART Crosstools now has a nifty stop and restart feature. Should a build break on a particular sub-component, you can actually fix the issue and continue the build from where it broke. It saves a ton of time. In order to take advantage of the feature you need to enable CT_DEBUG_CT_SAVE_STEPS in your .config

    Then you can invoke the STOP or RESTART command:

    ct-ng list-stepsct-ng build RESTART=cc_core_pass_1

    Building Static Becuase OSX does not build based on static libraries we need to make sure those options are disabled. This is already done in my config file but for those who are interested here are the flags:

    Thank you to Rolando for posting this in the comments!

    Many thanks

    Cross Compile For Mac Os X On Linux

    Cross Compile For Mac Os On Linux Command

    I used several blog posts and articles over the web to get this to work. Many thanks to their previous efforts.

    Linux Mac Os

    Last Modified: 2020.3.7





    broken image