Cross build needs rpath with xdeb

Bug #598389 reported by Peter Pearse
22
This bug affects 2 people
Affects Status Importance Assigned to Milestone
Linaro Binutils
Invalid
Undecided
Unassigned
binutils
Invalid
Undecided
Unassigned
armel-cross-toolchain-base (Ubuntu)
Fix Released
Undecided
Unassigned
Maverick
Fix Released
Undecided
Unassigned
Natty
Fix Released
Undecided
Unassigned
binutils (Ubuntu)
Fix Released
Undecided
Unassigned
Maverick
Fix Released
Undecided
Unassigned
Natty
Fix Released
Undecided
Unassigned
gcc-4.4 (Ubuntu)
Invalid
Undecided
Unassigned
Maverick
Invalid
Undecided
Unassigned
Natty
Invalid
Undecided
Unassigned
gcc-4.5 (Ubuntu)
Invalid
Undecided
Unassigned
Maverick
Invalid
Undecided
Unassigned
Natty
Invalid
Undecided
Unassigned
ncurses (Ubuntu)
Fix Released
Undecided
Loïc Minier
Maverick
Fix Released
Undecided
Unassigned
Natty
Fix Released
Undecided
Loïc Minier

Bug Description

Having installed the cross toolchain & xdeb, using the sources.list in the attached .tgz
xdeb -a armel -d ../dest --apt-source ncurses
fails with

arm-linux-gnueabi-gcc ../obj_s/tic.o ../obj_s/dump_entry.o ../obj_s/transform.o -Wl,-Bsymbolic-functions -I../progs -I/home/chroot-user/build/ncurses/progs -DHAVE_CONFIG_H -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -I. -I../include -I/home/chroot-user/build/ncurses/progs/../include -O2 -g --param max-inline-insns-single=1200 -fPIC -L../lib -ltic -L../lib -lncurses -o tic
../obj_s/tic.o: In function `open_tempfile':
/home/chroot-user/build/ncurses/progs/tic.c:461: warning: the use of `tmpnam' is dangerous, better use `mkstemp'
/usr/lib/gcc/arm-linux-gnueabi/4.4.4/../../../../arm-linux-gnueabi/bin/ld: warning: libdl.so.2, needed by ../lib/libncurses.so, not found (try using -rpath or -rpath-link)
../lib/libncurses.so: undefined reference to `dlsym@GLIBC_2.4'
../lib/libncurses.so: undefined reference to `dlclose@GLIBC_2.4'
../lib/libncurses.so: undefined reference to `dlopen@GLIBC_2.4'
collect2: ld returned 1 exit status
make[2]: *** [tic] Error 1
make[2]: Leaving directory `/home/chroot-user/build/ncurses/obj/progs'

The link can be made to succeed by either adding

-Wl,-rpath=/usr/arm-linux-gnueabi/lib

or

by using a linker script (in the attached .tgz) with

SEARCH_DIR("/usr/arm-linux-gnueabi/lib");

The default arm-linux-gnueabi-ld script of the failing compiler has

SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib");

A toolchain with the attached linker script as default builds all the ncurses packages successfully, using the same xdeb command.

Revision history for this message
Peter Pearse (peter-pearse) wrote :
Revision history for this message
Loïc Minier (lool) wrote :

Peter, I think this is a valid bug for the default cross-compiler library search path, could you include the exact version of binutils and gcc which you use for cross-compilation?

However, the reason you're failing to cross-compile this particular package with xdeb is due to a missing -ldl in the ncurses build rules; this should be addressed as well, I've opened another task in this bug against ncurses to track this. Would you take care of this?

Revision history for this message
Thomas Dickey (dickey-his) wrote :

Offhand, current code adds a -ldl. More details (such as which patch level of ncurses) helps.

Revision history for this message
Loïc Minier (lool) wrote :

Peter, another thing which might influence the build is the linker script of libc; check /usr/lib/libc.so and check whether the one from your cross-libc was properly converted to cross-dirs.

Revision history for this message
Peter Pearse (peter-pearse) wrote :

ncurses_5.7+20100313-2ubuntu1

Revision history for this message
Peter Pearse (peter-pearse) wrote :

ncurses configure prunes -ldl from LIBS, causing the tic & (at least) background to fail.

Revision history for this message
Peter Pearse (peter-pearse) wrote :

For cross ncurses/debian/rules needs to add --with-build-cflags=_GNU_SOURCE to the configure
diff against for both ncurses fixes attached

Revision history for this message
Peter Pearse (peter-pearse) wrote :

The -D_GNU_SOURCE is necessary to sort out the headers for the build-host tools make_hash & make_keys when cross building.

Revision history for this message
Loïc Minier (lool) wrote :

Is this only needed when cross-building or should the ncurses build always set -D_GNU_SOURCE when building make_hash & make_keys? What's the error you get otherwise?

Revision history for this message
Thomas Dickey (dickey-his) wrote : Re: [Bug 598389] Re: Cross build needs rpath with xdeb

Quoting Loïc Minier <email address hidden>:

> Is this only needed when cross-building or should the ncurses build
> always set -D_GNU_SOURCE when building make_hash & make_keys? What's
> the error you get otherwise?

It's needed for cross-building because the configure script can only
do checks for one compile-environment, and the source you're building
with includes headers that rely on the extra checks. When not cross
compiling, those are built using the flags used for the target.

I simplified that last month in this change, making the extra
flags unneeded:

20100522
 + simplify include-dependencies of make_hash and make_keys, to reduce
   the need for setting BUILD_CPPFLAGS in cross-compiling when the
   build- and target-machines differ.

tags: added: patch
Revision history for this message
Loïc Minier (lool) wrote :

Thomas, I checked the NEWS from latest ncurses dev tarball and it seems a relatively harmless bunch of updates when compared to Ubuntu's current 5.7+20100313, but still quite a few.

Do you see any issue in updating to this version, such as API/ABI changes (didn't see any myself) or things which could regress packages building against ncurses? Any serious known bugs pending a fix that you would know of/would be working on?

If instead you recommend I backport the individual fixes for -ldl and -D_GNU_SOURCE, is there a public VCS for ncurses, or should I diff tarballs to extra these?

Thanks,

Revision history for this message
Thomas Dickey (dickey-his) wrote :

On Thu, 1 Jul 2010, Loïc Minier wrote:

> Thomas, I checked the NEWS from latest ncurses dev tarball and it seems
> a relatively harmless bunch of updates when compared to Ubuntu's current
> 5.7+20100313, but still quite a few.
>
> Do you see any issue in updating to this version, such as API/ABI
> changes (didn't see any myself) or things which could regress packages
> building against ncurses? Any serious known bugs pending a fix that you
> would know of/would be working on?

I don't know of any serious/unfixed bugs. Currently I'm working on the
configure script for the Ada95 tree, to incorporate shared libraries there
for the platforms that can support it. Once done with that, I have
unfinished work for the MinGW port (to get the process for making DLLs
working reliably, etc). Neither of those has any nasty problems. The
ongoing changes in working in those areas are rather complicated though.

> If instead you recommend I backport the individual fixes for -ldl and
> -D_GNU_SOURCE, is there a public VCS for ncurses, or should I diff
> tarballs to extra these?

I can supply a copy of the weekly patches, if that helps. Mostly it's the
configure script that you're interested in.

--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net

Revision history for this message
Peter Pearse (peter-pearse) wrote :

Looking again at the default linker script above - the search path has =, so presumably the problem lies in the linker's sysroot configuration, rather than the script entry itself.

Revision history for this message
Peter Pearse (peter-pearse) wrote :
Loïc Minier (lool)
affects: gcc-linaro → binutils-linaro
Revision history for this message
Loïc Minier (lool) wrote :

(@Thomas: thanks for the advice!)

FWIW, I think I'm hitting the same linker script bug as Peter is reporting with pcre3:
libtool: install: warning: relinking `libpcreposix.la'
libtool: install: (cd /home/lool/pcre3; /bin/bash /home/lool/pcre3/libtool --tag CC --mode=relink arm-linux-gnueabi-gcc -Wall -g -O2 -version-info 15:1:12 -Wl,-Bsymbolic-functions -o libpcreposix.la -rpath /usr/lib pcreposix.lo libpcre.la -inst-prefix-dir /home/lool/pcre3/debian/tmp)
libtool: relink: arm-linux-gnueabi-gcc -shared .libs/pcreposix.o -L/home/lool/pcre3/debian/tmp/usr/lib -L/usr/lib -lpcre -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libpcreposix.so.3 -o .libs/libpcreposix.so.3.12.1
/usr/lib/gcc/arm-linux-gnueabi/4.4.4/../../../../arm-linux-gnueabi/bin/ld: skipping incompatible /usr/lib/libc.so when searching for -lc
/usr/lib/libc.a: could not read symbols: File format not recognized
collect2: ld returned 1 exit status
libtool: install: error: relink `libpcreposix.la' with the above command before installing it
 /bin/bash ./libtool --mode=install /usr/bin/install -c 'libpcrecpp.la' '/home/lool/pcre3/debian/tmp/usr/lib/libpcrecpp.la'
libtool: install: warning: relinking `libpcrecpp.la'
libtool: install: (cd /home/lool/pcre3; /bin/bash /home/lool/pcre3/libtool --tag CXX --mode=relink arm-linux-gnueabi-g++ -g -O2 -version-info 0:0:0 -Wl,-Bsymbolic-functions -o libpcrecpp.la -rpath /usr/lib pcrecpp.lo pcre_scanner.lo pcre_stringpiece.lo libpcre.la -inst-prefix-dir /home/lool/pcre3/debian/tmp)
libtool: relink: arm-linux-gnueabi-g++ -shared -nostdlib /usr/lib/gcc/arm-linux-gnueabi/4.4.4/../../../../arm-linux-gnueabi/lib/crti.o /usr/lib/gcc/arm-linux-gnueabi/4.4.4/crtbeginS.o .libs/pcrecpp.o .libs/pcre_scanner.o .libs/pcre_stringpiece.o -L/home/lool/pcre3/debian/tmp/usr/lib -L/usr/lib -lpcre -L/usr/lib/gcc/arm-linux-gnueabi/4.4.4 -L/usr/lib/gcc/arm-linux-gnueabi/4.4.4/../../../../arm-linux-gnueabi/lib -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/arm-linux-gnueabi/4.4.4/crtendS.o /usr/lib/gcc/arm-linux-gnueabi/4.4.4/../../../../arm-linux-gnueabi/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libpcrecpp.so.0 -o .libs/libpcrecpp.so.0.0.0
/usr/lib/libm.so: file not recognized: File format not recognized
collect2: ld returned 1 exit status
libtool: install: error: relink `libpcrecpp.la' with the above command before installing it

I've asked Marcin whether we could test that binutils patch you link to, then I shall look at ncurses again, considering the new upstream since it seems to address our cross-build issues.

Revision history for this message
Loïc Minier (lool) wrote :

Ok, my pcre3 issue is probably unrelated; just for the record, I remember I hit this a while ago while building my own cross-toolchains: libtool insists adding -L/usr/lib to the build while libs are only in /usr/$triplet/lib; this causes the linker to try to link against the libs from the build system rather than the target libs first. The linker would actually skip over the x86 /usr/lib/libm.so if it knew it is an x86 lib, but it doesn't unless configured with --enable-target=$(triplet of build system).

I used this gross hack of adding an --enable-target= for the build system back then, simply because the number of upstreams using libtool was too big and I didn't have time to identify a libtool fix. I believe the right way is to solve libtool. The issue with the hack is that it would allow doing the wrong thing when cross-building e.g. armv5 on armv6 or vice-versa, or i686 on i586 etc.

Revision history for this message
Marcin Juszkiewicz (hrw) wrote :
Loïc Minier (lool)
Changed in binutils-linaro:
status: New → Confirmed
Revision history for this message
Loïc Minier (lool) wrote :

Ah so with just the --with-build-cflags=-D_GNU_SOURCE change and with a binutils patched with the bugzilla patch Peter linked to, I can cross-build maverick's ncurses, confirming that indeed the upstream binutils patch helps.

I tested with the binary cross-binutils package which Marcin built with the patch: http://people.canonical.com/~hrw/binutils-arm-linux-gnueabi_2.20.51.20100617-0ubuntu1hrw2_amd64.deb

Revision history for this message
Loïc Minier (lool) wrote :

I tested http://people.canonical.com/~hrw/binutils-arm-linux-gnueabi_2.20.51.20100617-0ubuntu1_amd64.deb which is Marcin's latest build. It has the workaround I mentioned in comment #16 but it doesn't have the binutils patch mentionned here. As expected, it fixes the pcre3 FTBFS, but it doesn't fix the ncurses issue:
/usr/lib/gcc/arm-linux-gnueabi/4.4.4/../../../../arm-linux-gnueabi/bin/ld: warning: libdl.so.2, needed by ../lib/libncurses.so, not found (try using -rpath or -rpath-link)
../lib/libncurses.so: undefined reference to `dlsym@GLIBC_2.4'

So all expected so far.

I've test the binutils with the "hrw2" version with the ncurses snapshot I mentionned earlier, 5.7+20100626, and after updating the Debian patches to apply I can confirm it cross-builds fine. It does NOT cross-build with the above binutils though, due to missing link with -ldl:
arm-linux-gnueabi-gcc -I../progs -I/home/lool/ncurses/progs -DHAVE_CONFIG_H -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -I. -I../include -I/home/lool/ncurses/progs/../include -O2 -g --param max-inline-insns-single=1200 -fPIC -c /home/lool/ncurses/progs/transform.c -o ../obj_s/transform.o
arm-linux-gnueabi-gcc ../obj_s/tic.o ../obj_s/dump_entry.o ../obj_s/transform.o -Wl,-Bsymbolic-functions -I../progs -I/home/lool/ncurses/progs -DHAVE_CONFIG_H -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -I. -I../include -I/home/lool/ncurses/progs/../include -O2 -g --param max-inline-insns-single=1200 -fPIC -L../lib -ltic -L../lib -lncurses -o tic
/usr/lib/gcc/arm-linux-gnueabi/4.4.4/../../../../arm-linux-gnueabi/bin/ld: warning: libdl.so.2, needed by ../lib/libncurses.so, not found (try using -rpath or -rpath-link)
../lib/libncurses.so: undefined reference to `dlsym@GLIBC_2.4'
../lib/libncurses.so: undefined reference to `dlclose@GLIBC_2.4'
../lib/libncurses.so: undefined reference to `dlopen@GLIBC_2.4'
collect2: ld returned 1 exit status
make[2]: *** [tic] Error 1
make[2]: Leaving directory `/home/lool/ncurses/obj/progs'

I will attach the full ncurses build log for this failure.

What's odd is that the libncurses.so in the built tree is linked to libdl.so,
Conclusion: with latest ncurses, the patch to binutils to lookup libs in sysroot is needed (hrw2) and the kludge to add x86 support for libtool-based packages doesn't help. I don't think ncurses needs further fixing upstream.

Revision history for this message
Loïc Minier (lool) wrote :
Loïc Minier (lool)
Changed in ncurses (Ubuntu):
assignee: nobody → Loïc Minier (lool)
status: New → Confirmed
status: Confirmed → In Progress
status: In Progress → Fix Committed
Revision history for this message
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package ncurses - 5.7+20100626-0ubuntu1

---------------
ncurses (5.7+20100626-0ubuntu1) maverick; urgency=low

  * New upstream release
    - Fixes a couple of issues preventing cross-compilation; LP: #598389.
    - Update patch 05-emdebian-wchar to apply cleanly.
    - Drop 08-pkg-config-libdir patch as dpkg >= 1.15.6 don't set
      PKG_CONFIG_LIBDIR anymore.
 -- Loic Minier <email address hidden> Mon, 05 Jul 2010 21:11:31 +0200

Changed in ncurses (Ubuntu):
status: Fix Committed → Fix Released
Changed in binutils:
status: Unknown → Confirmed
Steve Langasek (vorlon)
Changed in binutils-linaro:
assignee: nobody → Marcin Juszkiewicz (hrw)
Revision history for this message
Loïc Minier (lool) wrote :

So Marcin notes that binutils has sysroot set to /, which is probably incorrect (should be /usr/$triplet for cross-binutils) and that also fixes the ncurses cross-build link issues, so it's probably a better fix than including the bugzilla patch.

Changed in binutils-linaro:
status: Confirmed → Invalid
Loïc Minier (lool)
Changed in binutils-linaro:
assignee: Marcin Juszkiewicz (hrw) → nobody
Changed in binutils (Ubuntu):
assignee: nobody → Marcin Juszkiewicz (hrw)
Revision history for this message
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package binutils - 2.20.51.20100710-1ubuntu1

---------------
binutils (2.20.51.20100710-1ubuntu1) maverick; urgency=low

  * Update HJ patches from binutils 2.20.51.0.10.

binutils (2.20.51.20100710-1) experimental; urgency=low

  * Snapshot, taken from the trunk 20100710.
    - Fix PR gas/10531. LP: #599485.
  * debian/rules: Introduce PF macros (Jim Heck). Closes: #588357.

  [ Marcin Juszkiewicz ]
  * Don't install documentation files in -cross packages. Closes: #586636.
  * Set sysroot to /usr/$(TARGET) for cross builds. LP: #598389.
 -- Matthias Klose <email address hidden> Sat, 10 Jul 2010 11:42:27 +0200

Changed in binutils (Ubuntu):
status: New → Fix Released
Revision history for this message
Matthias Klose (doko) wrote :

needs an update in gcc-4.4 and gcc-4.5 too.

Steve Langasek (vorlon)
Changed in gcc-4.4 (Ubuntu):
milestone: none → ubuntu-10.10
Changed in gcc-4.5 (Ubuntu):
milestone: none → ubuntu-10.10
Revision history for this message
Matthias Klose (doko) wrote :

no fix needed for gcc-4.4 and gcc-4.5. the sysroot isn't set in the build files, but from the environment.

Changed in gcc-4.4 (Ubuntu):
status: New → Invalid
Changed in gcc-4.5 (Ubuntu):
status: New → Invalid
Revision history for this message
Marcin Juszkiewicz (hrw) wrote :

Attached patch for binutils disables sysroot (if it is not set). This allowed me to compile ncurses without problems.

pcre3 is indeed other problem - there is something need to be done with libtool to make it work.

Steve Langasek (vorlon)
Changed in armel-cross-toolchain-base (Ubuntu Maverick):
status: New → In Progress
Changed in armel-cross-toolchain-base (Ubuntu Natty):
status: New → In Progress
Revision history for this message
Martin Pitt (pitti) wrote : Please test proposed package

Accepted armel-cross-toolchain-base into maverick-proposed, the package will build now and be available in a few hours. Please test and give feedback here. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to enable and use -proposed. Thank you in advance!

Changed in armel-cross-toolchain-base (Ubuntu Maverick):
status: In Progress → Fix Committed
tags: added: verification-needed
Revision history for this message
Loïc Minier (lool) wrote :

Fixed the maverick tasks; not sure why so many were bogus

Changed in gcc-4.5 (Ubuntu Maverick):
status: New → Invalid
Changed in gcc-4.4 (Ubuntu Maverick):
status: New → Invalid
Changed in ncurses (Ubuntu Maverick):
status: New → Fix Released
Changed in binutils (Ubuntu Maverick):
status: New → Fix Released
Revision history for this message
Marcin Juszkiewicz (hrw) wrote :

I am able to build ncurses for armel using xdeb in maverick chroot with armel-cross-toolchain-base packages in 1.52 version taken from maverick-proposed.

tags: added: verification-done
removed: verification-needed
Marcin Juszkiewicz (hrw)
Changed in armel-cross-toolchain-base (Ubuntu Natty):
assignee: nobody → Marcin Juszkiewicz (hrw)
status: In Progress → Fix Released
Marcin Juszkiewicz (hrw)
Changed in binutils:
importance: Unknown → Undecided
status: Confirmed → New
status: New → Invalid
Revision history for this message
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package armel-cross-toolchain-base - 1.52

---------------
armel-cross-toolchain-base (1.52) maverick-proposed; urgency=low

  * build binutils without sysroot support - closes LP: #598389

armel-cross-toolchain-base (1.51) maverick; urgency=low

  * debian/rules: add epoch for libgcc1-dbg version mangling - closes
    LP: #646729
 -- Marcin Juszkiewicz <email address hidden> Wed, 06 Oct 2010 14:46:16 +0200

Changed in armel-cross-toolchain-base (Ubuntu Maverick):
status: Fix Committed → Fix Released
Revision history for this message
Scott Ritchie (scottritchie) wrote :

Do we need to update ia32-libs? Maverick ia32-libs seems to conflict with lib32ncurses5w

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.