WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: piCore-7.1beta3 released  (Read 25968 times)

Offline Paul_123

  • Administrator
  • Hero Member
  • *****
  • Posts: 1063
Re: piCore-7.1beta3 released
« Reply #30 on: April 12, 2016, 12:16:45 PM »
Is the plan to stay at 4.1.20 for a little bit?

Good question. In the latest 7.1beta editions GCC, GLIBC was updated to latest upstream and I just updated BusyBox for the not yet released beta4. I will travel in the rest of the month so no new release in April. In May I will make a new release with the current 4.4.x kernel .

Sounds good,  4.1.20 seems stable enough for the moment, and I would suspect that with 4.4.x going default on the rpi, any odd bugs will get resolved in a couple of weeks.

Offline bzfrp

  • Newbie
  • *
  • Posts: 15
Re: piCore-7.1beta3 released
« Reply #31 on: April 29, 2016, 10:23:07 AM »
Hi,

I can't compile libupnpp from http://www.lesbonscomptes.com/upmpdcli/downloads.html:

tc@box:/mnt/mmcblk0p2/compile/libupnpp-0.14.1$ ./configure --prefix=/usr/local
checking for curl_easy_init in -lcurl... no
configure: error: libcurl not found

curl and curl-dev installed:
$ ls /usr/local/include/curl/
curl.h           curlver.h        multi.h
curlbuild.h      easy.h           stdcheaders.h
curlrules.h      mprintf.h        typecheck-gcc.h

$ ls /usr/local/lib/libcurl.*
/usr/local/lib/libcurl.a         /usr/local/lib/libcurl.so.4
/usr/local/lib/libcurl.la        /usr/local/lib/libcurl.so.4.4.0
/usr/local/lib/libcurl.so

I have compiled it on rpi 1 without problem.

Thanks for your help.

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: piCore-7.1beta3 released
« Reply #32 on: April 29, 2016, 12:47:59 PM »
In these situations, you'd look in config.log for detailed reports of why it failed.
The only barriers that can stop you are the ones you create yourself.

Offline bzfrp

  • Newbie
  • *
  • Posts: 15
Re: piCore-7.1beta3 released
« Reply #33 on: April 29, 2016, 01:39:53 PM »
I found this
Code: [Select]
configure:15503: checking for curl_easy_init in -lcurl
configure:15528: gcc -o conftest -Os -pipe   conftest.c -lcurl  -lixml -lupnp -l
pthread -lrt  >&5
/usr/local/lib/libcurl.so: undefined reference to `libssh2_scp_recv2'
collect2: error: ld returned 1 exit status

Offline bzfrp

  • Newbie
  • *
  • Posts: 15
Re: piCore-7.1beta3 released
« Reply #34 on: April 29, 2016, 02:46:52 PM »
I recompiled libssh2 and that has solved the problem. Thanks !