Disable LTO for debug xhyve builds.

LTO is enabled in the xcodeproject for xhyve. When targetting debug
builds override to NO so that local variables and function arguments
can be introspected in the debugger.
This commit is contained in:
Aaditya Chandrasekhar 2016-03-17 16:11:12 -07:00
parent 63a785dd22
commit 5e720a3d38

View file

@ -4,6 +4,7 @@ COPY_PHASE_STRIP = NO
STRIP_INSTALLED_PRODUCT = NO
GCC_OPTIMIZATION_LEVEL = 0
LLVM_LTO = NO
OTHER_CFLAGS_debug = $(OTHER_CFLAGS_common) -fno-inline
OTHER_CFLAGS = $(inherited) $(OTHER_CFLAGS_debug)