Skip to content
Browse files

Fix homebrew cross compiler install

  • Loading branch information...
1 parent c722a8e commit 0c9265afc861639bff434a4068e432c5d9f54f94 @DomThePorcupine DomThePorcupine committed
Showing with 5 additions and 2 deletions.
  1. +4 −1 bootstrap.sh
  2. +1 −1 setup/osx-homebrew.sh
View
5 bootstrap.sh
@@ -44,7 +44,10 @@ osx()
echo "Cloning Redox repo"
git clone -b "$1" --recursive https://github.com/redox-os/redox.git
echo "Running Redox setup script..."
- sh redox/setup/osx-homebrew.sh
+ brew tap homebrew/versions
+ brew install gcc49
+ brew tap Nashenas88/homebrew-gcc_cross_compilers
+ brew install i386-elf-binutils i386-elf-gcc nasm
echo "Running rust install script"
sh redox/setup/binary.sh
endMessage
View
2 setup/osx-homebrew.sh
@@ -1,5 +1,5 @@
#!/bin/bash
brew tap homebrew/versions
brew install gcc49
-brew tap altkatz/homebrew-gcc_cross_compilers
+brew tap Nashenas88/homebrew-gcc_cross_compilers
brew install i386-elf-binutils i386-elf-gcc nasm

0 comments on commit 0c9265a

Please sign in to comment.
Something went wrong with that request. Please try again.