summaryrefslogtreecommitdiff
path: root/BUILD/compile-solaris-x86-32-debug
diff options
context:
space:
mode:
authorunknown <knielsen@knielsen-hq.org>2009-07-07 13:19:24 +0200
committerunknown <knielsen@knielsen-hq.org>2009-07-07 13:19:24 +0200
commit51f3e0049f3d79150e69141679fc9acabc0facfe (patch)
tree668465c9c6d6cbb245db5c9c5adda3c2e619e204 /BUILD/compile-solaris-x86-32-debug
parent9db357e2bfebf9207a507c4a2244499899a960a2 (diff)
downloadmariadb-git-51f3e0049f3d79150e69141679fc9acabc0facfe.tar.gz
Solaris 10 build script fixes by Toby Thain.
Added build scripts for 32 bit x86 architecture on Solaris. Renamed some scripts for consistency. Changed to dynamic linking of libgcc. BUILD/compile-solaris-amd64: Changed to dynamic linking of libgcc. The -static-libgcc was a legacy of the original build scripts. -R (analogous to -L link time search path) is a Solaris mechanism to ensure a needed lib directory is searched at runtime. In Solaris 10, gcc comes bundled, under /usr/sfw, allowing to use it without creating dependency problems. This allows eg. benefiting from ordinary system patch maintenance. BUILD/compile-solaris-amd64-debug: Changed to dynamic linking of libgcc. The -static-libgcc was a legacy of the original build scripts. -R (analogous to -L link time search path) is a Solaris mechanism to ensure a needed lib directory is searched at runtime. In Solaris 10, gcc comes bundled, under /usr/sfw, allowing to use it without creating dependency problems. This allows eg. benefiting from ordinary system patch maintenance.
Diffstat (limited to 'BUILD/compile-solaris-x86-32-debug')
-rw-r--r--BUILD/compile-solaris-x86-32-debug11
1 files changed, 11 insertions, 0 deletions
diff --git a/BUILD/compile-solaris-x86-32-debug b/BUILD/compile-solaris-x86-32-debug
new file mode 100644
index 00000000000..9ce91495c1c
--- /dev/null
+++ b/BUILD/compile-solaris-x86-32-debug
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+path=`dirname $0`
+. "$path/SETUP.sh"
+extra_flags="-D__sun -m32 $debug_cflags"
+extra_configs="$max_configs --with-libevent $debug_configs"
+
+LDFLAGS="-lmtmalloc -R/usr/sfw/lib"
+export LDFLAGS
+
+. "$path/FINISH.sh"