Hello, is there any way to define a path to custom compiler? In my case I want to compile with my custom-built clang.
Also it would be great to have some docs on nimrod.cfg. Available options, how @if works, etc...
Thanx.
Use this in your config:
cc = clang
clang.path = r"your/path/here"
Great, thanx! And one more question please. Is there any way to define variables in config, to be used within the same config? What i want is something like:
let iOSVersion = "8.1"
let simSDK = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" & iOSVersion & ".sdk"
let iosSDK = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS" & iOSVersion & ".sdk"
clang.options.always = "-isysroot " & simSDK