https://github.com/pjones/ghc-ios-util
Utilities and Scripts for Haskell iOS Development
https://github.com/pjones/ghc-ios-util
Last synced: 18 days ago
JSON representation
Utilities and Scripts for Haskell iOS Development
- Host: GitHub
- URL: https://github.com/pjones/ghc-ios-util
- Owner: pjones
- Created: 2013-02-21T23:32:16.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-02-22T23:58:15.000Z (over 12 years ago)
- Last Synced: 2025-02-18T00:43:14.113Z (4 months ago)
- Language: Shell
- Size: 129 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Utilities and Scripts for Haskell iOS Development
GHC build scripts based on the ghc-ios [wiki][ghc-ios] and
[ghc-ios-simple-setup][simple].## Building GHC (iOS) Cross Compiler With These Scripts
Assuming this repository is in `~/ghc-ios-util`:
1. Follow the [wiki][ghc-ios] instructions for installing
dependencies (Xcode command line tools, LLVM, etc.).2. Check out the [ghc-ios](https://github.com/ghc-ios/ghc) repo:
git clone https://github.com/ghc-ios/ghc.git ghc-ios
cd ghc-ios
./sync-all get3. Update all "sub" repositories to the correct versions:
sh ~/ghc-ios-util/ghc/checkout.sh
4. Compile GHC:
sh ~/ghc-ios-util/ghc/compile.sh
5. Install:
sudo mkdir -p /usr/local/ghc-ios
sudo chown $USER /usr/local/ghc-ios
make install[ghc-ios]: https://github.com/ghc-ios/ghc/wiki
[simple]: https://github.com/jfischoff/ghc-ios-simple-setup