diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index fd393efbff..56ce135798 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-04-18 Benrhard Heckel + + * lib/gdb.exp (gdb_compile_shlib): Add flag for ICC compiler. + 2016-04-18 Bernhard Heckel * lib/compiler.c: Add Intel specific preprocessor macros. diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 0d8a3b060f..8b0241d2ad 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -3553,6 +3553,9 @@ proc gdb_compile_shlib {sources dest options} { lappend obj_options "additional_flags=-fpic" } } + "icc-*" { + lappend obj_options "additional_flags=-fpic" + } default { # don't know what the compiler is... }