mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 21:33:08 +00:00
use -all-static when building a static gdb
gdb is linked with libtool, which has a different meaning for -static, and -all-static must be used to get a static executable. The binutils build script already uses this option for static builds. Also remove unnecessary -static from cflags for the gdb build. Signed-off-by: Chris Copeland <chris@chrisnc.net>
This commit is contained in:
parent
f22be3a625
commit
6146b5a640
@ -255,6 +255,7 @@ do_gdb_backend()
|
|||||||
{
|
{
|
||||||
local host prefix destdir cflags ldflags static buildtype subdir includedir
|
local host prefix destdir cflags ldflags static buildtype subdir includedir
|
||||||
local -a extra_config
|
local -a extra_config
|
||||||
|
local -a extra_make_flags
|
||||||
|
|
||||||
for arg in "$@"; do
|
for arg in "$@"; do
|
||||||
case "$arg" in
|
case "$arg" in
|
||||||
@ -285,7 +286,6 @@ do_gdb_backend()
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${static}" = "y" ]; then
|
if [ "${static}" = "y" ]; then
|
||||||
cflags+=" -static"
|
|
||||||
ldflags+=" -static"
|
ldflags+=" -static"
|
||||||
# There is no static libsource-highlight
|
# There is no static libsource-highlight
|
||||||
extra_config+=("--disable-source-highlight")
|
extra_config+=("--disable-source-highlight")
|
||||||
@ -347,8 +347,14 @@ do_gdb_backend()
|
|||||||
--disable-werror \
|
--disable-werror \
|
||||||
"${extra_config[@]}" \
|
"${extra_config[@]}" \
|
||||||
|
|
||||||
|
if [ "${static}" = "y" ]; then
|
||||||
|
extra_make_flags+=("LDFLAGS=${ldflags} -all-static")
|
||||||
|
CT_DoLog EXTRA "Prepare gdb for static build"
|
||||||
|
CT_DoExecLog ALL make ${CT_JOBSFLAGS} configure-host
|
||||||
|
fi
|
||||||
|
|
||||||
CT_DoLog EXTRA "Building ${buildtype} gdb"
|
CT_DoLog EXTRA "Building ${buildtype} gdb"
|
||||||
CT_DoExecLog ALL make ${CT_JOBSFLAGS}
|
CT_DoExecLog ALL make "${extra_make_flags[@]}" ${CT_JOBSFLAGS}
|
||||||
|
|
||||||
CT_DoLog EXTRA "Installing ${buildtype} gdb"
|
CT_DoLog EXTRA "Installing ${buildtype} gdb"
|
||||||
CT_DoExecLog ALL make install ${destdir:+DESTDIR="${destdir}"}
|
CT_DoExecLog ALL make install ${destdir:+DESTDIR="${destdir}"}
|
||||||
|
Loading…
Reference in New Issue
Block a user