Custom Linker for Xcode Project with Fast

We use the LD and LDPLUSPLUS user settings to invoke a custom linker that works fine if there is no quick file in the project, and then the original clang is called. Is there a way to override the linker for projects that use swift?

Update: radar for Xcode error: http://openradar.appspot.com/radar?id=5330879249383424

+7
linker build xcode clang swift
source share
1 answer

It would probably be easier for you to use a project based on a makefile with custom compilers and linkers.

http://owensd.io/2015/01/14/compiling-swift-without-xcode.html - when compiling swift without xcode.

0
source share

All Articles