mirror of
https://github.com/MariaDB/server.git
synced 2025-03-13 02:28:37 +01:00

Quoting from the bug report: The pstack library has been included in MySQL since version 4.0.0. It's useless and should be removed. Details: According to its own documentation, pstack only works on Linux on x86 in 32 bit mode and requires LinuxThreads and a statically linked binary. It doesn't really support any Linux from 2003 or later and doesn't work on any other OS. The --enable-pstack option is thus deprecated and has no effect.
11 lines
258 B
Bash
Executable file
11 lines
258 B
Bash
Executable file
#! /bin/sh
|
|
|
|
path=`dirname $0`
|
|
. "$path/SETUP.sh"
|
|
|
|
extra_flags="$pentium_cflags $debug_cflags"
|
|
extra_configs="$pentium_configs $debug_configs $static_link"
|
|
|
|
extra_configs="$extra_configs --with-debug=full --with-mysqlfs --without-server"
|
|
|
|
. "$path/FINISH.sh"
|