Dear OpenEmbedded hackers,

I tried to build the new VDR recipe [1] with the following command.

        $ bitbake -c clean vdr
        $ bitbake vdr

But I get the following error.

        NOTE: Running task 802 of 813 (ID: 8, 
/oe/openembedded/recipes/vdr/vdr_1.7.10.bb, do_compile)
        ERROR: function do_compile failed

The log shows the following.

        […]
        arm-angstrom-linux-gnueabi-g++ -march=armv7-a -mtune=cortex-a8 
-mfpu=neon -mfloat-abi=softfp 
-isystem/oe/angstrom-dev/staging/armv7a-angstrom-linux-gnueabi/usr/include 
-fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb3 
-fpermissive -fvisibility-inlines-hidden -rdynamic audio.o channels.o ci.o 
config.o cutter.o device.o diseqc.o dvbdevice.o dvbci.o dvbosd.o dvbplayer.o 
dvbspu.o dvbsubtitle.o eit.o eitscan.o epg.o filter.o font.o i18n.o interface.o 
keys.o lirc.o menu.o menuitems.o nit.o osdbase.o osd.o pat.o player.o plugin.o 
rcu.o receiver.o recorder.o recording.o remote.o remux.o ringbuffer.o sdt.o 
sections.o shutdown.o skinclassic.o skins.o skinsttng.o sources.o spu.o 
status.o svdrp.o themes.o thread.o timers.o tools.o transfer.o vdr.o videodir.o 
-ljpeg -lpthread -ldl -lcap -lrt -lfreetype -lfontconfig -lintl 
-L/oe/angstrom-dev/staging/armv7a-angstrom-linux-gnueabi/usr/lib 
-Wl,-rpath-link,/oe/angstrom-dev/staging/armv7a-angstrom-linux-gnueabi/usr/lib 
-Wl,-O1 -Wl,--hash-style=gnu  ./libsi/libsi.a -o vdr
        
/oe/angstrom-dev/cross/armv7a/lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/../../../../arm-angstrom-linux-gnueabi/bin/ld:
 cannot find -lintl
        collect2: ld returned 1 exit status
        make: *** [vdr] Error 1
        FATAL: oe_runmake failed

Without knowing what I have to do, I tried the fix it by adding a
dependency on `virtual/libintl` according to [2] to no avail. (It had
todo with lintl. ;-))

        diff --git a/recipes/vdr/vdr_1.7.10.bb b/recipes/vdr/vdr_1.7.10.bb
        index 64b89b8..49c9079 100644
        --- a/recipes/vdr/vdr_1.7.10.bb
        +++ b/recipes/vdr/vdr_1.7.10.bb
        @@ -4,7 +4,7 @@ LICENSE = "GPLv2"
         HOMEPAGE = "http://www.tvdr.de";
         PR = "r0"
         
        -DEPENDS = "fontconfig freetype gettext libcap jpeg"
        +DEPENDS = "fontconfig freetype gettext libcap jpeg virtual/libintl"
         
         SRC_URI = "ftp://ftp.tvdr.de/vdr/Developer/${P}.tar.bz2 \
                    file://fixpaths.patch;patch=1 \

Can someone help me please.


Thanks,

Paul


[1] 
http://cgit.openembedded.org/cgit.cgi/openembedded/tree/recipes/vdr/vdr_1.7.10.bb
[2] 
http://lists.linuxtogo.org/pipermail/openembedded-commits/2009-September/031178.html

Attachment: signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil

_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

Reply via email to