diff options
Diffstat (limited to 'src/template/solaris')
-rw-r--r-- | src/template/solaris | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/template/solaris b/src/template/solaris index e07b9a0a8d6..f88b1cdad37 100644 --- a/src/template/solaris +++ b/src/template/solaris @@ -1,3 +1,12 @@ +# src/template/solaris + +# Extra CFLAGS for code that will go into a shared library +if test "$GCC" = yes ; then + CFLAGS_SL="-fPIC" +else + CFLAGS_SL="-KPIC" +fi + if test "$SUN_STUDIO_CC" = yes ; then CC="$CC -Xa" # relaxed ISO C mode CFLAGS="-v" # -v is like gcc -Wall |