From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vw0-f48.google.com (mail-vw0-f48.google.com [209.85.212.48]) by mx1.pokylinux.org (Postfix) with ESMTP id 803D04C800A6 for ; Tue, 7 Jun 2011 21:41:51 -0500 (CDT) Authentication-Results: mx1.pokylinux.org; dkim=pass (1024-bit key; insecure key) header.i=@gmail.com; x-dkim-adsp=none (insecure policy) Received: by vws7 with SMTP id 7so86831vws.35 for ; Tue, 07 Jun 2011 19:41:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:from:date:message-id:subject:to :content-type; bh=M/Y0laFqpLOSo3wExgLfanjmRXHCMkp1SvUIESpKs58=; b=FAIJ3OOCi6Rn5le6XxoWpZJpblJWb/ZtzlNhmuwIkyq/kt5QhVz/suKjbOmIHUOyhL dAIpuHnvpHNNyTSqQ7XX8LeGleIldF/crsF2/WpvHGPIOY12h3bReKcbh8FtqQSi3Nb7 5g8YeUuJSG1iHhywGcwSqz+38uy7Sa/tF2xSA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=k8jrHMB7EzhDfJW1KDm+vT96rQlPQxl8b/k8SBn3WhR8XzwHI40ExrBl2Sg1ib0d1U 5wfYDHIIALre9/+rpi6wy4z+s9GbyBzPVcFlkAgFpv78jIl2IjOw1BiOe54AzoCRbzuB H1lunuwA9bX16rq8gVAdf1MFsxvtGBUAp2XIM= Received: by 10.52.73.234 with SMTP id o10mr441399vdv.174.1307500910061; Tue, 07 Jun 2011 19:41:50 -0700 (PDT) MIME-Version: 1.0 Received: by 10.52.169.225 with HTTP; Tue, 7 Jun 2011 19:41:10 -0700 (PDT) From: Daryl Spitzer Date: Tue, 7 Jun 2011 19:41:10 -0700 Message-ID: To: yocto@yoctoproject.org Subject: undefined reference to `pthread_getspecific' in perl-native_5.12.2.bb task do_compile? X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jun 2011 02:41:51 -0000 Content-Type: text/plain; charset=ISO-8859-1 The good news is that following the instructions in https://wiki.yoctoproject.org/wiki/Working_Behind_a_Network_Proxy seems to have solved my proxy problems. But unfortunately I'm getting errors after running `bitbake -k poky-image-sato`, following the "Building an Image" instructions in the Yocto Project Quick Start. (I didn't make any changes to the conf/local.conf file generated by `source poky-bernard-5.0/poky-init-build-env poky-5.0-build`, except to add the CVS setup lines as directed in the Working_Behind_a_Network_Proxy wiki page.) When I repeat `bitbake -k poky-image-sato` I believe I get the same results. Here's the output, up to and including the first error: Loading cache...done. Loaded 980 entries from dependency cache. Parsing recipes...done. Parsing of 783 .bb files complete (772 cached, 11 parsed). 991 targets, 11 skipped, 0 masked, 0 errors. OE Build Configuration: BB_VERSION = "1.11.0" METADATA_BRANCH = "" METADATA_REVISION = "" TARGET_ARCH = "i586" TARGET_OS = "linux" MACHINE = "qemux86" DISTRO = "poky" DISTRO_VERSION = "1.0" TARGET_FPU = "" NOTE: Resolving any missing task queue dependencies NOTE: Preparing runqueue NOTE: Executing SetScene Tasks NOTE: Executing RunQueue Tasks NOTE: Running task 632 of 4961 (ID: 387, /home/daryls/yocto/poky-bernard-5.0/meta/recipes-devtools/perl/perl-native_5.12.2.bb, do_compile) NOTE: package perl-native-5.12.2-r7: task do_compile: Started ERROR: Function 'do_compile' failed (see /home/daryls/yocto/poky-5.0-build/tmp/work/x86_64-linux/perl-native-5.12.2-r7/temp/log.do_compile.27994 for further information) ... ---------- And here's the head of log.do_compile.27994: OTE: make -e MAKEFLAGS= gcc -L/home/daryls/yocto/poky-5.0-build/tmp/sysroots/x86_64-linux/usr/lib -Wl,-rpath-link,/home/daryls/yocto/poky-5.0-build/tmp/sysroots/x86_64-linux/usr/lib -Wl,-rpath,/home/daryls/yocto/poky-5.0-build/tmp/sysroots/x86_64-linux/usr/lib -Wl,-O1 -fstack-protector -L/usr/local/lib -o miniperl \ gv.o toke.o perly.o pad.o regcomp.o dump.o util.o mg.o reentr.o mro.o hv.o av.o run.o pp_hot.o sv.o pp.o scope.o pp_ctl.o pp_sys.o doop.o doio.o regexec.o utf8.o taint.o deb.o universal.o globals.o perlio.o perlapi.o numeric.o mathoms.o locale.o pp_pack.o pp_sort.o \ miniperlmain.o opmini.o perlmini.o util.o: In function `Perl_safesysmalloc': util.c:(.text+0x558): undefined reference to `pthread_getspecific' util.o: In function `Perl_safesysrealloc': util.c:(.text+0x5f0): undefined reference to `pthread_getspecific' util.o: In function `Perl_croak_nocontext': util.c:(.text+0x19b6): undefined reference to `pthread_getspecific' ---------- Does this look familiar? Why would I be getting these errors when following the Yocto Project Quick Start instructions, without changes? Did I miss something? -- Daryl