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
0a21c374
Commit
0a21c374
authored
Apr 27, 2005
by
guilhem@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update of BUILD/* scripts to storage/ directory structure (they didn't work anymore)
parent
72955bd0
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
24 additions
and
24 deletions
+24
-24
BUILD/FINISH.sh
BUILD/FINISH.sh
+3
-3
BUILD/compile-alpha-cxx
BUILD/compile-alpha-cxx
+1
-1
BUILD/compile-alpha-debug
BUILD/compile-alpha-debug
+1
-1
BUILD/compile-dist
BUILD/compile-dist
+2
-2
BUILD/compile-hpux11-parisc2-aCC
BUILD/compile-hpux11-parisc2-aCC
+2
-2
BUILD/compile-ia64-debug-max
BUILD/compile-ia64-debug-max
+3
-3
BUILD/compile-irix-mips64-mipspro
BUILD/compile-irix-mips64-mipspro
+2
-2
BUILD/compile-pentium-pgcc
BUILD/compile-pentium-pgcc
+2
-2
BUILD/compile-solaris-sparc
BUILD/compile-solaris-sparc
+2
-2
BUILD/compile-solaris-sparc-debug
BUILD/compile-solaris-sparc-debug
+2
-2
BUILD/compile-solaris-sparc-forte
BUILD/compile-solaris-sparc-forte
+2
-2
BUILD/compile-solaris-sparc-purify
BUILD/compile-solaris-sparc-purify
+2
-2
No files found.
BUILD/FINISH.sh
View file @
0a21c374
...
...
@@ -11,15 +11,15 @@ done
commands
=
"
\
$make
-k distclean || true
/bin/rm -rf */.deps/*.P config.cache
innobase/config.cache
bdb/build_unix/config.cache bdb/dist/autom4te.cache autom4te.cache innobase/autom4te.cache;
/bin/rm -rf */.deps/*.P config.cache
storage/innobase/config.cache storage/
bdb/build_unix/config.cache bdb/dist/autom4te.cache autom4te.cache innobase/autom4te.cache;
aclocal || (echo
\"
Can't execute aclocal
\"
&& exit 1)
autoheader || (echo
\"
Can't execute autoheader
\"
&& exit 1)
aclocal || (echo
\"
Can't execute aclocal
\"
&& exit 1)
automake || (echo
\"
Can't execute automake
\"
&& exit 1)
autoconf || (echo
\"
Can't execute autoconf
\"
&& exit 1)
(cd bdb/dist && sh s_all)
(cd innobase && aclocal && autoheader && aclocal && automake && autoconf)
(cd
storage/
bdb/dist && sh s_all)
(cd
storage/
innobase && aclocal && autoheader && aclocal && automake && autoconf)
if [ -d gemini ]
then
(cd gemini && aclocal && autoheader && aclocal && automake && autoconf)
...
...
BUILD/compile-alpha-cxx
View file @
0a21c374
/bin/rm -f */.deps/*.P */*.o
make -k clean
/bin/rm -f */.deps/*.P */*.o
/bin/rm -f */.deps/*.P config.cache
innobase/config.cache
bdb/build_unix/config.cache mysql-*.tar.gz
/bin/rm -f */.deps/*.P config.cache
storage/innobase/config.cache storage/
bdb/build_unix/config.cache mysql-*.tar.gz
aclocal; autoheader; aclocal; automake; autoconf
CC=ccc CFLAGS="-fast" CXX=cxx CXXFLAGS="-fast -noexceptions -nortti" ./configure --prefix=/usr/local/mysql --disable-shared --with-extra-charsets=complex --enable-thread-safe-client --with-mysqld-ldflags=-non_shared --with-client-ldflags=-non_shared --without-extra-tools --disable-dependency-tracking
...
...
BUILD/compile-alpha-debug
View file @
0a21c374
/bin/rm -f */.deps/*.P */*.o
make -k clean
/bin/rm -f */.deps/*.P */*.o
/bin/rm -f */.deps/*.P config.cache
innobase/config.cache
bdb/build_unix/config.cache mysql-*.tar.gz
/bin/rm -f */.deps/*.P config.cache
storage/innobase/config.cache storage/
bdb/build_unix/config.cache mysql-*.tar.gz
aclocal; autoheader; aclocal; automake; autoconf
CFLAGS=-O1 CC=gcc CXX=gcc CXXFLAGS="-O1 -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql --with-debug --with-extra-charsets=complex --without-extra-tools
...
...
BUILD/compile-dist
View file @
0a21c374
...
...
@@ -12,8 +12,8 @@ autoheader
libtoolize
--automake
--force
--copy
automake
--force
--add-missing
--copy
autoconf
(
cd
bdb/dist
&&
sh s_all
)
(
cd
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
(
cd
storage/
bdb/dist
&&
sh s_all
)
(
cd
storage/
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
# Default to gcc for CC and CXX
if
test
-z
"
$CXX
"
;
then
...
...
BUILD/compile-hpux11-parisc2-aCC
View file @
0a21c374
...
...
@@ -68,8 +68,8 @@ libtoolize --automake --force
automake
--force
--add-missing
autoconf
(
cd
bdb/dist
&&
sh s_all
)
(
cd
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
(
cd
storage/
bdb/dist
&&
sh s_all
)
(
cd
storage/
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
CC
=
cc
CXX
=
aCC
CFLAGS
=
"
$cflags
"
CXXFLAGS
=
"
$cxxflags
"
\
./configure
--prefix
=
/usr/local/mysql
--disable-shared
\
...
...
BUILD/compile-ia64-debug-max
View file @
0a21c374
gmake -k clean || true
/bin/rm -f */.deps/*.P config.cache
innobase/config.cache
bdb/build_unix/config.cache
/bin/rm -f */.deps/*.P config.cache
storage/innobase/config.cache storage/
bdb/build_unix/config.cache
aclocal && autoheader && aclocal && automake && autoconf
(cd bdb/dist && sh s_all)
(cd innobase && aclocal && autoheader && aclocal && automake && autoconf)
(cd
storage/
bdb/dist && sh s_all)
(cd
storage/
innobase && aclocal && autoheader && aclocal && automake && autoconf)
if [ -d gemini ]
then
(cd gemini && aclocal && autoheader && aclocal && automake && autoconf)
...
...
BUILD/compile-irix-mips64-mipspro
View file @
0a21c374
...
...
@@ -40,8 +40,8 @@ libtoolize --automake --force
automake
--force
--add-missing
autoconf
(
cd
bdb/dist
&&
sh s_all
)
(
cd
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
(
cd
storage/
bdb/dist
&&
sh s_all
)
(
cd
storage/
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
# C options:
# -apo - auto-parallize for multiprocessors (implies -mp)
...
...
BUILD/compile-pentium-pgcc
View file @
0a21c374
...
...
@@ -3,8 +3,8 @@ gmake -k clean || true
/bin/rm -f */.deps/*.P config.cache
aclocal && autoheader && aclocal && automake && autoconf
(cd bdb/dist && sh s_all)
(cd innobase && aclocal && autoheader && aclocal && automake && autoconf)
(cd
storage/
bdb/dist && sh s_all)
(cd
storage/
innobase && aclocal && autoheader && aclocal && automake && autoconf)
if [ -d gemini ]
then
(cd gemini && aclocal && autoheader && aclocal && automake && autoconf)
...
...
BUILD/compile-solaris-sparc
View file @
0a21c374
...
...
@@ -4,8 +4,8 @@ gmake -k clean || true
/bin/rm
-f
*
/.deps/
*
.P config.cache
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
(
cd
bdb/dist
&&
sh s_all
)
(
cd
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
(
cd
storage/
bdb/dist
&&
sh s_all
)
(
cd
storage/
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
if
[
-d
gemini
]
then
(
cd
gemini
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
...
...
BUILD/compile-solaris-sparc-debug
View file @
0a21c374
...
...
@@ -4,8 +4,8 @@ gmake -k clean || true
/bin/rm
-f
*
/.deps/
*
.P config.cache
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
(
cd
bdb/dist
&&
sh s_all
)
(
cd
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
(
cd
storage/
bdb/dist
&&
sh s_all
)
(
cd
storage/
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
if
[
-d
gemini
]
then
(
cd
gemini
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
...
...
BUILD/compile-solaris-sparc-forte
View file @
0a21c374
...
...
@@ -4,8 +4,8 @@ gmake -k clean || true
/bin/rm
-f
*
/.deps/
*
.P config.cache
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
(
cd
bdb/dist
&&
sh s_all
)
(
cd
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
(
cd
storage/
bdb/dist
&&
sh s_all
)
(
cd
storage/
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
if
[
-d
gemini
]
then
(
cd
gemini
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
...
...
BUILD/compile-solaris-sparc-purify
View file @
0a21c374
...
...
@@ -34,8 +34,8 @@ done
gmake
-k
clean
||
true
/bin/rm
-f
*
/.deps/
*
.P config.cache
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
(
cd
bdb/dist
&&
sh s_all
)
(
cd
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
(
cd
storage/
bdb/dist
&&
sh s_all
)
(
cd
storage/
innobase
&&
aclocal
&&
autoheader
&&
aclocal
&&
automake
&&
autoconf
)
CFLAGS
=
"-g -Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wimplicit-int -Wparentheses -Wsign-compare -Wwrite-strings -Wunused -DHAVE_purify -DEXTRA_DEBUG -O2"
CXX
=
gcc
CXXLD
=
g++
CXXFLAGS
=
"-g -Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wparentheses -Wsign-compare -Wwrite-strings -Woverloaded-virtual -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor -felide-constructors -fno-exceptions -fno-rtti -DHAVE_purify -DEXTRA_DEBUG -O2"
./configure
--prefix
=
/usr/local/mysql
--enable-assembler
--with-extra-charsets
=
complex
--enable-thread-safe-client
--with-berkeley-db
--with-embedded-server
--with-innodb
$EXTRA_CONFIG_FLAGS
...
...
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