문제

I'm writing Objective-C code with LLVM. I have one file full of very performance-critical code. Is it possible to turn on compiler optimizations (specifically, loop unrolling) for just this one file, without setting a project-wide value?

도움이 되었습니까?

해결책

Yes, it's possible. Choose your project file from the project navigator. Then choose the target. Click the Build Phases tab. Open the Compile Sources section. Double-click the source file of interest and add the compiler flag. Here's a picture:

compiler flag for one source file

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top