Yes. It will compile with the flags:
--prefix=/usr/local
--enable-assembler
but if I try the flag
--with-mysqld-ldflags=-all-static
I get the error. I get other errors if I try
--without-docs
--without-man
--without-bench
but I want to get it to compile first before I start passing these parameters. Given what you said about no static gcc_s library, it would appear I will have to keep excluding the --with-mysqld-ldflags=-all-static parameter.
If I compile with:
--prefix=/usr/local
--enable-assembler
--with-gnu-ld
I get the error:
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type:
config.sub: missing argument
Try `config.sub --help' for more information.
configure: error: /bin/sh ./config.sub failed
./build_source: line 18: --with-gnu-ld: not found
make: *** No targets specified and no makefile found. Stop.
mkdir: cannot create directory '/tmp/mysql': File exists
make: *** No rule to make target `install'. Stop.
chown: /tmp/mysql/usr/local: No such file or directory
If I compile with:
--prefix=/usr/local
--enable-assembler
--without-docs
I get the error:
onfigure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type:
config.sub: missing argument
Try `config.sub --help' for more information.
configure: error: /bin/sh ./config.sub failed
./build_source: line 18: --without-docs: not found
make: *** No targets specified and no makefile found. Stop.
mkdir: cannot create directory '/tmp/mysql': File exists
make: *** No rule to make target `install'. Stop.
chown: /tmp/mysql/usr/local: No such file or directory
And so on. It seems I am destined to build a large (aka. fully-documented) MySQL package.