diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile')
-rw-r--r-- | packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile b/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile new file mode 100644 index 0000000..f89b52a --- /dev/null +++ b/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile @@ -0,0 +1,9 @@ +LEVEL = ../../../make + +CXX_SOURCES := main.cpp + +ifneq (,$(findstring icc,$(CC))) + CXXFLAGS += -debug inline-debug-info +endif + +include $(LEVEL)/Makefile.rules |