Testsuite: Fix compiling of shared libraries with ICC.
authorBernhard Heckel <bernhard.heckel@intel.com>
Mon, 18 Apr 2016 09:49:07 +0000 (11:49 +0200)
committerBernhard Heckel <bernhard.heckel@intel.com>
Mon, 18 Apr 2016 11:57:31 +0000 (13:57 +0200)
We are missing "-fpic" flag when compiling shared libraries with ICC.

2016-04-18  Bernhard Heckel  <bernhard.heckel@intel.com>

gdb/Testsuite/Changelog:
* lib/gdb.exp (gdb_compile_shlib): Add flag for ICC compiler.

gdb/testsuite/ChangeLog
gdb/testsuite/lib/gdb.exp

index fd393ef..56ce135 100644 (file)
@@ -1,3 +1,7 @@
+2016-04-18  Benrhard Heckel <bernhard.heckel@intel.com>
+
+       * lib/gdb.exp (gdb_compile_shlib): Add flag for ICC compiler.
+
 2016-04-18  Bernhard Heckel <bernhard.heckel@intel.com>
 
        * lib/compiler.c: Add Intel specific preprocessor macros.
index 0d8a3b0..8b0241d 100644 (file)
@@ -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...
         }