Testsuite: Fix compiling of shared libraries with ICC.

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.
This commit is contained in:
Bernhard Heckel 2016-04-18 11:49:07 +02:00
parent a14d1f4dfc
commit 9b9b09e902
2 changed files with 7 additions and 0 deletions

View 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.

View 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...
}