mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 05:55:43 -04:00

This feature is controlled by an expression command option, a target property and the SBExpressionOptions setting. FixIt's are only applied to UserExpressions, not UtilityFunctions, those you have to get right when you make them. This is just a first stage. At present the fixits are applied silently. The next step is to tell the user about the applied fixit. <rdar://problem/25351938> llvm-svn: 264379
13 lines
342 B
Makefile
13 lines
342 B
Makefile
LEVEL = ../../make
|
|
|
|
CXX_SOURCES := main.cpp
|
|
|
|
# clang-3.5+ outputs FullDebugInfo by default for Darwin/FreeBSD
|
|
# targets. Other targets do not, which causes this test to fail.
|
|
# This flag enables FullDebugInfo for all targets.
|
|
ifneq (,$(findstring clang,$(CC)))
|
|
CFLAGS_EXTRAS += -fno-limit-debug-info
|
|
endif
|
|
|
|
include $(LEVEL)/Makefile.rules
|