aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/functionalities/breakpoint/breakpoint_ids/Makefile4
-rw-r--r--test/functionalities/breakpoint/breakpoint_locations/Makefile4
-rw-r--r--test/functionalities/inline-stepping/Makefile4
-rw-r--r--test/python_api/frame/inlines/Makefile4
4 files changed, 16 insertions, 0 deletions
diff --git a/test/functionalities/breakpoint/breakpoint_ids/Makefile b/test/functionalities/breakpoint/breakpoint_ids/Makefile
index 314f1cb2f..f89b52a97 100644
--- a/test/functionalities/breakpoint/breakpoint_ids/Makefile
+++ b/test/functionalities/breakpoint/breakpoint_ids/Makefile
@@ -2,4 +2,8 @@ LEVEL = ../../../make
CXX_SOURCES := main.cpp
+ifneq (,$(findstring icc,$(CC)))
+ CXXFLAGS += -debug inline-debug-info
+endif
+
include $(LEVEL)/Makefile.rules
diff --git a/test/functionalities/breakpoint/breakpoint_locations/Makefile b/test/functionalities/breakpoint/breakpoint_locations/Makefile
index b09a57915..7934cd5db 100644
--- a/test/functionalities/breakpoint/breakpoint_locations/Makefile
+++ b/test/functionalities/breakpoint/breakpoint_locations/Makefile
@@ -2,4 +2,8 @@ LEVEL = ../../../make
C_SOURCES := main.c
+ifneq (,$(findstring icc,$(CC)))
+ CFLAGS += -debug inline-debug-info
+endif
+
include $(LEVEL)/Makefile.rules
diff --git a/test/functionalities/inline-stepping/Makefile b/test/functionalities/inline-stepping/Makefile
index 2aefbd8b6..532f49555 100644
--- a/test/functionalities/inline-stepping/Makefile
+++ b/test/functionalities/inline-stepping/Makefile
@@ -2,4 +2,8 @@ LEVEL = ../../make
CXX_SOURCES := calling.cpp
+ifneq (,$(findstring icc,$(CC)))
+ CXXFLAGS += -debug inline-debug-info
+endif
+
include $(LEVEL)/Makefile.rules
diff --git a/test/python_api/frame/inlines/Makefile b/test/python_api/frame/inlines/Makefile
index c5b0d18f9..641ee5d96 100644
--- a/test/python_api/frame/inlines/Makefile
+++ b/test/python_api/frame/inlines/Makefile
@@ -2,4 +2,8 @@ LEVEL = ../../../make
C_SOURCES := inlines.c
+ifneq (,$(findstring icc,$(CC)))
+ CFLAGS += -debug inline-debug-info
+endif
+
include $(LEVEL)/Makefile.rules