Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
f4e88199
Commit
f4e88199
authored
Nov 10, 2007
by
mats@capulet.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding build scripts for Solaris 10 on AMD64.
parent
a88babcb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
125 additions
and
54 deletions
+125
-54
BUILD/compile-solaris-amd64
BUILD/compile-solaris-amd64
+9
-54
BUILD/compile-solaris-amd64-debug
BUILD/compile-solaris-amd64-debug
+10
-0
BUILD/compile-solaris-amd64-forte
BUILD/compile-solaris-amd64-forte
+52
-0
BUILD/compile-solaris-amd64-forte-debug
BUILD/compile-solaris-amd64-forte-debug
+54
-0
No files found.
BUILD/compile-solaris-amd64
View file @
f4e88199
#!/usr/bin/bash
function
_find_mysql_root
()
(
while
[
"x
$PWD
"
!=
"x/"
]
;
do
# Check if some directories are present
if
[
-d
BUILD
-a
-d
sql
-a
-d
mysys
]
;
then
echo
"
$PWD
"
return
0
fi
cd
..
done
return
1
)
make
-k
clean
||
true
/bin/rm
-f
*
/.deps/
*
.P config.cache
#! /bin/sh
path
=
`
dirname
$0
`
.
"
$path
/autorun.sh"
warning_flags
=
"-Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wparentheses -Wsign-compare -Wwrite-strings -Wunused"
compiler_flags
=
"-g -O3 -fno-omit-frame-pointer"
export
CC CXX CFLAGS CXXFLAGS LDFLAGS LIBS
CC
=
"gcc"
CXX
=
"gcc"
CFLAGS
=
"
$warning_flags
$compiler_flags
"
CXXFLAGS
=
""
LDFLAGS
=
"-O3 -g -static-libgcc"
LIBS
=
-lmtmalloc
root
=
$(
_find_mysql_root
)
$root
/configure
\
--prefix
=
/usr/local/mysql
\
--localstatedir
=
/usr/local/mysql/data
\
--libexecdir
=
/usr/local/mysql/bin
\
--with-extra-charsets
=
complex
\
--enable-thread-safe-client
\
--enable-local-infile
\
--with-zlib-dir
=
bundled
\
--with-big-tables
\
--with-readline
\
--with-archive-storage-engine
\
--with-named-curses
=
-lcurses
\
--with-big-tables
\
--with-innodb
\
--with-berkeley-db
\
--with-example-storage-engine
\
--with-blackhole-storage-engine
\
--with-ndbcluster
\
--with-federated-storage-engine
\
--with-csv-storage-engine
\
--with-ssl
\
--with-embedded-server
\
--disable-shared
.
"
$path
/SETUP.sh"
amd64_cflags
=
"-m64 -mtune=athlon64"
extra_flags
=
"
$amd64_cflags
$max_cflags
"
c_warnings
=
"
$c_warnings
"
cxx_warnings
=
"
$cxx_warnings
"
extra_configs
=
"
$amd64_configs
$debug_configs
$max_configs
--enable-thread-safe-client"
.
"
$path
/FINISH.sh"
BUILD/compile-solaris-amd64-debug
0 → 100644
View file @
f4e88199
#! /bin/sh
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
amd64_cflags
=
"-m64 -mtune=athlon64"
extra_flags
=
"
$amd64_cflags
$debug_cflags
$max_cflags
"
c_warnings
=
"
$c_warnings
$debug_extra_warnings
"
cxx_warnings
=
"
$cxx_warnings
$debug_extra_warnings
"
extra_configs
=
"
$amd64_configs
$debug_configs
$max_configs
--enable-thread-safe-client"
.
"
$path
/FINISH.sh"
BUILD/compile-solaris-amd64-forte
0 → 100644
View file @
f4e88199
#! /bin/sh
gmake
-k
clean
||
true
/bin/rm
-f
*
/.deps/
*
.P config.cache
path
=
`
dirname
$0
`
.
"
$path
/autorun.sh"
# For "optimal" code for this computer add -fast to EXTRA
# To compile 64 bit, add -xarch=v9 to EXTRA_64_BIT
EXTRA_64_BIT
=
"-xarch=amd64"
EXTRA
=
"-fast"
#
# The following should not need to be touched
#
export
CC CXX CFLAGS CXXFLAGS
STD
=
"-g -mt -D_FORTEC_
$EXTRA
$EXTRA_64_BIT
"
ASFLAGS
=
"
$EXTRA_64_BIT
"
CC
=
cc-5.0
CFLAGS
=
"-Xa -xstrconst
$STD
"
CXX
=
CC
CXXFLAGS
=
"-noex
$STD
"
./configure
\
--prefix
=
/usr/local/mysql
\
--localstatedir
=
/usr/local/mysql/data
\
--libexecdir
=
/usr/local/mysql/bin
\
--with-extra-charsets
=
complex
\
--enable-thread-safe-client
\
--enable-local-infile
\
--with-zlib-dir
=
bundled
\
--with-big-tables
\
--with-readline
\
--with-archive-storage-engine
\
--with-named-curses
=
-lcurses
\
--with-big-tables
\
--with-innodb
\
--with-example-storage-engine
\
--with-blackhole-storage-engine
\
--with-federated-storage-engine
\
--with-csv-storage-engine
\
--with-ssl
\
--enable-assembler
# Not including:
# --with-ndbcluster
# --with-berkeley-db
gmake
-j4
test
$?
=
0
&&
make
test
BUILD/compile-solaris-amd64-forte-debug
0 → 100644
View file @
f4e88199
#! /bin/sh
gmake
-k
clean
||
true
/bin/rm
-f
*
/.deps/
*
.P config.cache
path
=
`
dirname
$0
`
.
"
$path
/autorun.sh"
# To compile 64 bit, add -xarch=amd64 to EXTRA_64_BIT
EXTRA_64_BIT
=
"-xarch=amd64"
# For "optimal" code for this computer add -fast to EXTRA. Note that
# this causes problem with debugging the program since -fast implies
# -xO5.
EXTRA
=
""
#
# The following should not need to be touched
#
export
CC CXX CFLAGS CXXFLAGS
STD
=
"-g -mt -D_FORTEC_
$EXTRA
$EXTRA_64_BIT
$debug_cflags
"
ASFLAGS
=
"
$EXTRA_64_BIT
"
CC
=
cc-5.0
CFLAGS
=
"-Xa -xstrconst
$STD
"
CXX
=
CC
CXXFLAGS
=
"-noex
$STD
"
./configure
\
--prefix
=
/usr/local/mysql
\
--localstatedir
=
/usr/local/mysql/data
\
--libexecdir
=
/usr/local/mysql/bin
\
--with-extra-charsets
=
complex
\
--enable-thread-safe-client
\
--enable-local-infile
\
--with-zlib-dir
=
bundled
\
--with-big-tables
\
--with-readline
\
--with-archive-storage-engine
\
--with-named-curses
=
-lcurses
\
--with-big-tables
\
--with-innodb
\
--with-example-storage-engine
\
--with-blackhole-storage-engine
\
--with-federated-storage-engine
\
--with-csv-storage-engine
\
--with-ssl
\
--with-debug
\
--enable-assembler
# Not including:
# --with-ndbcluster
# --with-berkeley-db
gmake
-j4
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment