Browse Source

fixed glibc* stage-0 on hppa

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2074 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
3554e4ddca
2 changed files with 14 additions and 2 deletions
  1. +6
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +8
    -2
      package/base/glibc23/glibc23.conf

+ 6
- 0
Documentation/Developers/CHANGELOG-RENE

@ -1,4 +1,10 @@
*) 2003-12-28 (2.0.0-rc3 - 2.0.0-rc4)
- fixed dietlibc to use the correct arch_machine (fixes x86_64 build
and maybe sparc64) as well as line-break fixes
- fixed glibc* stage-0 on hppa
*) 2003-12-27 (2.0.0-rc3 - 2.0.0-rc4)
- Valentin Ziegler: updated flex (2.5.31)

+ 8
- 2
package/base/glibc23/glibc23.conf

@ -115,8 +115,14 @@ glibc_prepatch() {
glibc_stage0() {
mkdir -p objdir; cd objdir
eval "../configure --enable-add-ons ${confopt% --target=*}" \
"--build=\$arch_build --host=\$arch_target"
contopt="${confopt% --target=*}"
var_append confopt " " "--enable-add-ons --build=\$arch_build \
--host=\$arch_target"
# due to assembler check - and we do not yet have as ...
[ $arch = hppa ] && var_append confopt " " "--enable-hacker-mode"
eval "../configure $confopt"
make -k cross-compiling=yes install-headers || true
# make some final adaptions

Loading…
Cancel
Save