mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 13:05:52 -04:00

This CL adds a regression test for the bug listed at https://llvm.org/bugs/show_bug.cgi?id=26790 Functionality was implemented in commit r263544 Author: Luke Drummond <luke.drummond@codeplay.com> Differential Revision: http://reviews.llvm.org/D17777 llvm-svn: 263547
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
|