Browse Source

Changed Config to show multilib support option within the "Architecture" block

- After changing the default behavior for 64bit target builds from
  "multilib-by-default" to optional, it is more wise to move the
  option out of the "Expert Features" section to be more visible.
karasz/new-early
Christian Wiese 17 years ago
parent
commit
856f2b77fe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/sde-config/main.in

+ 1
- 1
lib/sde-config/main.in

@ -115,6 +115,7 @@ block_begin 7
if [ -f architecture/$SDECFG_ARCH/config.in ]
then . architecture/$SDECFG_ARCH/config.in ; fi
bool 'Enable c-compiler multilib support' SDECFG_MULTILIB 0
bool 'This is a cross-build between architectures' SDECFG_CROSSBUILD 0
if [ "$SDECFG_CROSSBUILD" = 1 ] ; then
pkgfilter sed -e 's,^\(. ..\)[^ ]*,\1--------,' -e 's,^\(. \)?,\10,' -e 's,^\(. .\)?,\11,'
@ -382,7 +383,6 @@ break packages!'
bool 'Enable PIE (Position Independent Code)' SDECFG_PIE 0
bool 'Disable exceptions and rtti in C++' SDECFG_LIMITCXX 0
bool 'Enable c-compiler multilib support' SDECFG_MULTILIB 0
bool 'Disable National Language Support' SDECFG_DISABLE_NLS 0
if [ "$SDECFG_DISABLE_NLS" = 1 ] ; then

Loading…
Cancel
Save