ibotlog2html for #crosstool-ng

<< Previous 2012-07-05 Next >>

# 00:42:43 smartin joins #crosstool-ng
# 01:00:57 smartin quits : Quit: leaving
# 04:06:18 alan_o quits : Quit: Leaving
# 06:06:45 mnt_real quits : Ping timeout: 248 seconds
# 06:13:53 mnt_real joins #crosstool-ng
# 08:17:49 smartin joins #crosstool-ng
# 12:24:38 Kasreyn joins #crosstool-ng
# 12:28:45 Kasreyn i want to build a new toolchain, but can't find GNU C Library "2.2.5" anywhere after ct-ng menuconfig. can it be added? "root@Moxa:/# ./lib/libc.so.6: GNU C Library stable release version 2.2.5, by Roland McGrath et al."
# 12:44:04 kos_tom glibc 2.2.5 dates from 2002, i.e 10 years ago.
# 12:44:18 kos_tom can you jump into the present instead?
# 12:55:54 Kasreyn personally, i'd love to do just that. unfortunately this is what our hardware supplier (MOXA) thinks is good enough
# 12:57:09 Kasreyn i can provide the email correspondence i've had with them if you want :)
# 13:04:30 Kasreyn they've added custom code to the linux kernel maybe making things a little more difficult
# 13:05:53 Kasreyn the sources with the entire buildsystem can be downloaded though.. i've wanted to upgrade for a long time
# 13:08:17 Kasreyn their buildsystem is not as good as crosstool :)
# 13:41:13 alan_o joins #crosstool-ng
# 14:30:26 esbenh quits : Ping timeout: 244 seconds
# 14:32:29 smartin quits : Ping timeout: 244 seconds
# 14:42:31 smartin joins #crosstool-ng
# 14:45:33 Kasreyn using crosstool-ng toolchain, would it be possible to link staticly to avoid "./regex_iterator_example: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory" ?
# 14:56:48 kos_tom yes, you can build a static toolchain with ct-ng.
# 15:06:06 esbenh joins #crosstool-ng
# 15:38:01 linuxjacques quits : Ping timeout: 246 seconds
# 15:59:35 Guest35630 joins #crosstool-ng
# 17:16:37 al` quits : Ping timeout: 248 seconds
# 17:54:39 HanSooloo joins #crosstool-ng
# 19:05:38 smartin quits : Quit: leaving
# 20:36:34 bhundven joins #crosstool-ng
# 21:16:44 al` joins #crosstool-ng
# 21:19:40 Guest35630 is now known as: linuxjacques
# 21:19:59 linuxjacques quits : Changing host
# 21:19:59 linuxjacques joins #crosstool-ng
# 22:10:51 smartin joins #crosstool-ng
# 22:32:04 HanSooloo hello, trying to build a x-tool with GCC4.7.0 as the compiler … getting "configure: error: gcc must provide the header" … any ideas what can be causing this?
# 22:32:28 HanSooloo FYI: this is running on an Ubuntu 12.04 x86, building for i686-nptl-linux-gnu
# 23:03:01 smartin HanSooloo: on ubuntu host, it is pretty easy to find what package is missing
# 23:04:20 HanSooloo hi .. so, it was the glibc version … going from 2.13 down to 2.11 got past that error
# 23:04:26 HanSooloo but now, i have this one:
# 23:04:45 HanSooloo INFO ] Installing C library headers & start files
# 23:04:45 HanSooloo [EXTRA] Configuring C library
# 23:04:47 HanSooloo [EXTRA] Installing C library headers
# 23:04:48 HanSooloo [ERROR] make[2]: *** [/home/hansolo/x-tools/i686-nptl-linux-gnu/i686-nptl-linux-gnu/sysroot/usr/include/gnu/lib-names.h] Error 1
# 23:04:48 HanSooloo [
# 23:05:08 HanSooloo why do I get lib-names.h error?
# 23:05:35 bhundven dpkg -S lib-names.h
# 23:05:37 smartin HanSooloo: please, use some pastebin service
# 23:05:44 HanSooloo oh sorry ..
# 23:05:46 HanSooloo will do
# 23:05:59 bhundven dpkg -S cpuid.h
# 23:06:40 HanSooloo let me check dpkg suggestion … wouldn't the x-tools script provide these files? i thought x-tools would download the needed files
# 23:06:55 smartin got to go, but you should try posting on the mailing the relevant part of the error log, with the .config in attachment
# 23:07:16 HanSooloo ok, will do .. thank you
# 23:07:20 smartin quits : Quit: leaving
# 23:07:42 bhundven idk what you mean by x-tools script
# 23:07:54 HanSooloo when I download and build ct-ng
# 23:07:55 bhundven it doesn't know anything about ubuntu, or fedora, or debian, etc..
# 23:08:02 HanSooloo in the bin directory, i run ct-ng menuconfig
# 23:08:24 bhundven you have to have all the right dev packages installed
# 23:08:32 HanSooloo when i specify various options, i thought it would download them as source packages from gnu.org or relevant sites
# 23:08:55 bhundven there are somethings that are expected to already be on the host
# 23:09:04 bhundven make sure you have build-essentials
# 23:09:11 bhundven installed
# 23:09:16 HanSooloo FYI … i am trying to build an i686-nptl-linux-gnu toolchain on an Ubuntu … the toolchain would build packages for a NAS that needs the specific config I have
# 23:09:31 bhundven yes, sounds generic enough
# 23:09:42 HanSooloo yes, i believe i have all the build essential stuff ..let me post the logs on the mailer
# 23:09:57 bhundven I'm saying
# 23:10:11 bhundven it sounds like you are missing some packages you need to install on your ubuntu installation
# 23:10:16 bhundven make sure you have build-essentials
# 23:10:18 bhundven installed
# 23:10:38 bhundven sudo apt-get install build-essentials
# 23:12:39 bhundven ?
# 23:13:54 bhundven lib-names.h is provided by libc6-dev... which would be installed, had you installed build-essentials
# 23:15:05 bhundven sorry, the package is called: build-essential
# 23:15:17 bhundven ;)
# 23:15:33 bhundven sudo apt-get install build-essential
# 23:15:57 bhundven HanSooloo: you there?
# 23:16:33 HanSooloo sorry, be back in 1 minute
# 23:18:16 HanSooloo back ..
# 23:18:24 HanSooloo i have all the build essential packages installed
# 23:18:40 HanSooloo the error message makes me thing, it's sth. to do with the build process
# 23:18:52 bhundven I doubt it
# 23:18:56 bhundven my builds are working fine
# 23:19:07 HanSooloo [ALL ] /usr/bin/install: cannot stat `/home/hansolo/x-tools/.build/i686-nptl-linux-gnu/build/build-libc-startfiles/gnu/lib-names.h': No such file or directory
# 23:19:28 HanSooloo it's referring to a file that is downloaded (Should have been) to the x-tools build directory
# 23:19:31 HanSooloo but cannot be found
# 23:19:45 bhundven not the downloaded file, but the output in the build
# 23:20:14 bhundven try editing your logfile
# 23:20:17 bhundven and searching for
# 23:20:23 bhundven other failures from the beginning
# 23:20:41 bhundven it maybe that this part of the build is messed up from a previous failure
# 23:26:21 HanSooloo i see .. i should do that, thank you
# 23:32:45 HanSooloo so, searched for [ERROR] in top level build.log … the 'lib-names.h not found' error is the first time it happens and the build stops
# 23:32:58 HanSooloo now, re-running with DEBUG level logging to see if there is anything amiss
# 23:41:22 bhundven what is in the logfile is what you will see on your screen when you set DEBUG level
# 23:41:36 bhundven the filter for the loglevel is just what you see on the screen
# 23:44:07 bhundven ah
# 23:44:12 bhundven install gawk
# 23:44:16 bhundven sudo apt-get install gawk
# 23:45:50 HanSooloo hmm interesting .. it brings in libsigsegv2 and gawk packages .. installing now
# 23:45:57 bhundven yup
# 23:45:58 bhundven cool
# 23:46:06 bhundven then try the build again
# 23:46:08 HanSooloo i should break the current build process and re-run
# 23:46:08 bhundven :D
# 23:46:13 bhundven yea
# 23:46:28 HanSooloo is a distclean required between a broken build and the next?
# 23:46:33 bhundven pastebin.me + google chrome == badness
# 23:46:47 bhundven nah
# 23:46:51 bhundven just ct-ng build
# 23:47:13 HanSooloo ok, building .. will take about an hour before it gets to the broken part in my system
# 23:47:15 HanSooloo ttyl
# 23:48:54 bhundven l8r

Generated by ibotlog2html by Yann E. MORIN