forked from EDeijl/CPHConsoleApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHaskelliOS.xcconfig
30 lines (22 loc) · 937 Bytes
/
HaskelliOS.xcconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// HaskelliOS.xcconfig
// Haskell iOS
//
// Created by Luke Iannini on 5/14/14.
//
// We don't support 64bit architectures yet.
VALID_ARCHS = armv7 armv7s
//This may be necessary if XCode complains
//ARCHS = "$(ARCHS_STANDARD_32_BIT)"
// Avoids stripping out critical GHC runtime code (Simon Marlow has mentioned there may be around needing this)
DEAD_CODE_STRIPPING = NO
ENABLE_BITCODE = NO
// Be sure to include $(inherited) if you override any of the following:
// Required by the Haskell runtime
OTHER_LDFLAGS = -liconv
// You can use this instead to ignore the annoying
// "could not create compact unwind for .LFB3: non-standard register 5 being saved in prolog"
// error, which is harmless. But it masks all warnings, so be careful.
// OTHER_LDFLAGS = -liconv -w
// Configure this to match your installed GHC
HEADER_SEARCH_PATHS = /Library/Frameworks/GHC.framework/Versions/7.10.2-x86_64/usr/lib/ghc-7.10.2/include/