summaryrefslogtreecommitdiffstats
path: root/src/template/solaris
blob: f88b1cdad37f85039eabf288ae6e44c9ac3fc44c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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
  if test "$enable_debug" != yes; then
    CFLAGS="$CFLAGS -O"		# any optimization breaks debug
  fi

  # Pick the right test-and-set (TAS) code for the Sun compiler.
  # We would like to use in-line assembler, but the compiler
  # requires *.il files to be on every compile line, making
  # the build system too fragile.
  case $host_cpu in
    sparc)
	need_tas=yes
	tas_file=sunstudio_sparc.s
    ;;
    i?86|x86_64)
	need_tas=yes
	tas_file=sunstudio_x86.s
    ;;
  esac
fi