Posts: 660 | Thanked: 2,351 times | Joined on Mar 2009
#51
With harmattan target I fetch apt-get source libc6 and compiled it for fremantle target.

http://cc.oulu.fi/~rantalai/maemo/glibc_from_harmattan/
There are debs and raw libc.so.
 

The Following 3 Users Say Thank You to AapoRantalainen For This Useful Post:
Posts: 1,812 | Thanked: 1,937 times | Joined on May 2011 @ Poland
#52
Originally Posted by AapoRantalainen View Post
With harmattan target I fetch apt-get source libc6 and compiled it for fremantle target.

http://cc.oulu.fi/~rantalai/maemo/glibc_from_harmattan/
There are debs and raw libc.so.
Strange, these are still old 2.5 packages, as in fremantle.
I was talking about these packages.
Was it a typo or did you build eglibc v2.5?

note: if you want exact details about the harmattan repo, they're right there: http://forum.meego.com/showpost.php?p=27649&postcount=2

marmistrz
__________________
MeeCoLay: run MeeGo Harmattan apps on Fremantle
PowEdit: manage power key menu entries
User Agent Tool - change Maemo Browser's user agent
MaeLyrica - lyrics download client

If you want to support my work, you can DONATE

You're encouraged to donate at least a couple of euros - otherwise PayPal takes almost everything as a fee.

If you would like to donate in other currency or can't donate but would like to support me, please contact me.
 
Posts: 660 | Thanked: 2,351 times | Joined on Mar 2009
#53
Originally Posted by marmistrz View Post
Strange, these are still old 2.5 packages, as in fremantle.
You are right, I messed with my targets. Yes, last one was fremantle packages for fremantle (not very excited).
 

The Following 3 Users Say Thank You to AapoRantalainen For This Useful Post:
Posts: 660 | Thanked: 2,351 times | Joined on Mar 2009
#54
Package binutils2.22 are in extras-devel. It doesn't conflict with any package (no names, no files).
Code:
/usr/binutils2.22/bin/ld is symlink to the ld.bfd
and
Code:
ldd /usr/binutils2.22/bin/ld.bfd
->  /usr/binutils2.22/lib/libbfd-2.22-system.so
So LD_LIBRARY_PATH might be useless.

At least this is working:
Code:
PATH=/usr/binutils2.22/bin:$PATH ld --version
-> 2.22
 

The Following 6 Users Say Thank You to AapoRantalainen For This Useful Post:
Posts: 660 | Thanked: 2,351 times | Joined on Mar 2009
#55
Compiling Harmattan's libc6 keeps qemu crashing. I decided to compile it straight on the phone. It could take days, 10 hours back already. (And I'm not still sure will it compile, and will result work as expected)
 

The Following 5 Users Say Thank You to AapoRantalainen For This Useful Post:
Posts: 1,812 | Thanked: 1,937 times | Joined on May 2011 @ Poland
#56
Originally Posted by AapoRantalainen View Post
Compiling Harmattan's libc6 keeps qemu crashing. I decided to compile it straight on the phone. It could take days, 10 hours back already. (And I'm not still sure will it compile, and will result work as expected)
Seems hard.
I'll fire up my maemo sdk, just to check whether it's a sb2-connected problem

N' I've got an idea, why the libc > 2.11 doesn't work. Harmattan's is eglibc. The ubuntu's/debian's/whatever's is normal glibc.
__________________
MeeCoLay: run MeeGo Harmattan apps on Fremantle
PowEdit: manage power key menu entries
User Agent Tool - change Maemo Browser's user agent
MaeLyrica - lyrics download client

If you want to support my work, you can DONATE

You're encouraged to donate at least a couple of euros - otherwise PayPal takes almost everything as a fee.

If you would like to donate in other currency or can't donate but would like to support me, please contact me.
 
Posts: 1,812 | Thanked: 1,937 times | Joined on May 2011 @ Poland
#57
Originally Posted by AapoRantalainen View Post
Package binutils2.22 are in extras-devel. It doesn't conflict with any package (no names, no files).
Code:
/usr/binutils2.22/bin/ld is symlink to the ld.bfd
and
Code:
ldd /usr/binutils2.22/bin/ld.bfd
->  /usr/binutils2.22/lib/libbfd-2.22-system.so
So LD_LIBRARY_PATH might be useless.

At least this is working:
Code:
PATH=/usr/binutils2.22/bin:$PATH ld --version
-> 2.22
after apt-get update I'm getting this:
Code:
Ignoring Provides line with DepCompareOp for package binutils
Doesn't seem fatal, but just letting you know.
__________________
MeeCoLay: run MeeGo Harmattan apps on Fremantle
PowEdit: manage power key menu entries
User Agent Tool - change Maemo Browser's user agent
MaeLyrica - lyrics download client

If you want to support my work, you can DONATE

You're encouraged to donate at least a couple of euros - otherwise PayPal takes almost everything as a fee.

If you would like to donate in other currency or can't donate but would like to support me, please contact me.
 

The Following 4 Users Say Thank You to marmistrz For This Useful Post:
Posts: 1,812 | Thanked: 1,937 times | Joined on May 2011 @ Poland
#58
My Scratchbox doesn't crash, but I'm getting this:


Code:
:1: sorry, unimplemented: -mfloat-abi=hard and VFP
On both gcc 4.2 and your 4.6

Here are the last lines from 4.6
http://pastebin.com/6vmEE8Uh
__________________
MeeCoLay: run MeeGo Harmattan apps on Fremantle
PowEdit: manage power key menu entries
User Agent Tool - change Maemo Browser's user agent
MaeLyrica - lyrics download client

If you want to support my work, you can DONATE

You're encouraged to donate at least a couple of euros - otherwise PayPal takes almost everything as a fee.

If you would like to donate in other currency or can't donate but would like to support me, please contact me.

Last edited by marmistrz; 05-25-2012 at 02:22 PM.
 
Posts: 660 | Thanked: 2,351 times | Joined on Mar 2009
#59
Originally Posted by marmistrz View Post
Code:
:1: sorry, unimplemented: -mfloat-abi=hard and VFP
pass --host=arm-unknown-linux-gnueabi --build=arm-unknown-linux-gnueabi to configure. (debian/rules uses that, and it starts compiling)
 

The Following 6 Users Say Thank You to AapoRantalainen For This Useful Post:
Posts: 1,812 | Thanked: 1,937 times | Joined on May 2011 @ Poland
#60
Originally Posted by AapoRantalainen View Post
pass --host=arm-unknown-linux-gnueabi --build=arm-unknown-linux-gnueabi to configure. (debian/rules uses that, and it starts compiling)
This is the modified debian/rules.d/build.mk
http://pastebin.com/USC6y5xq

Still gettin' this error.
__________________
MeeCoLay: run MeeGo Harmattan apps on Fremantle
PowEdit: manage power key menu entries
User Agent Tool - change Maemo Browser's user agent
MaeLyrica - lyrics download client

If you want to support my work, you can DONATE

You're encouraged to donate at least a couple of euros - otherwise PayPal takes almost everything as a fee.

If you would like to donate in other currency or can't donate but would like to support me, please contact me.
 
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

 
Forum Jump


All times are GMT -4. The time now is 02:37 AM.