Skip to content

Commit

Permalink
Merge pull request #287 from bhundven/binutils_gdb_configure
Browse files Browse the repository at this point in the history
binutils/gdb: Fix configure options when building from binutils-gdb repo
  • Loading branch information
bhundven committed Nov 25, 2015
2 parents c4a1428 + 3c072d6 commit e68eff0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/build/binutils/binutils.sh
Expand Up @@ -211,6 +211,10 @@ do_binutils_backend() {
extra_config+=("--disable-multilib")
fi

# Disable gdb when building from the binutils-gdb repository.
extra_config+=("--disable-sim")
extra_config+=("--disable-gdb")

[ "${CT_TOOLCHAIN_ENABLE_NLS}" != "y" ] && extra_config+=("--disable-nls")

CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'"
Expand Down
15 changes: 15 additions & 0 deletions scripts/build/debug/300-gdb.sh
Expand Up @@ -100,6 +100,11 @@ do_debug_gdb_build() {
LD_for_gdb="${CT_HOST}-ld -static"
fi

# Disable binutils options when building from the binutils-gdb repo.
cross_extra_config+=("--disable-binutils")
cross_extra_config+=("--disable-ld")
cross_extra_config+=("--disable-gas")

CT_DoLog DEBUG "Extra config passed: '${cross_extra_config[*]}'"

CT_DoExecLog CFG \
Expand Down Expand Up @@ -186,6 +191,11 @@ do_debug_gdb_build() {

export ac_cv_func_strncmp_works=yes

# Disable binutils options when building from the binutils-gdb repo.
native_extra_config+=("--disable-binutils")
native_extra_config+=("--disable-ld")
native_extra_config+=("--disable-gas")

CT_DoLog DEBUG "Extra config passed: '${native_extra_config[*]}'"

CT_DoExecLog CFG \
Expand Down Expand Up @@ -251,6 +261,11 @@ do_debug_gdb_build() {
fi
fi

# Disable binutils options when building from the binutils-gdb repo.
gdbserver_extra_config+=("--disable-binutils")
gdbserver_extra_config+=("--disable-ld")
gdbserver_extra_config+=("--disable-gas")

CT_DoExecLog CFG \
CC="${CT_TARGET}-gcc" \
CPP="${CT_TARGET}-cpp" \
Expand Down

0 comments on commit e68eff0

Please sign in to comment.