|
Register or have you forgotten your password?
|
|
|
| General chat about Amiga topics This forum is for conversations which are specifically "Amiga" related, but don't fit into other categories. Contents of this forum do appear on the main page, unlike Talk About. If a subject appears to be non-related, it will be moved to Talk About. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#121 | |||||||||
|
Cult Member
![]()
|
Quote:
You'll need most of the libraries (libnsgif, libnsbmp, libwapcaplet, libhubbub, libdom, libcss, libparserutils.. think that's all of them) You need to grab everything using Git unfortunately, as there's no other way to download it. Don't bother with v2.9, there have been so many changes since then you'd be wasting your time. You also need to download "buildsystem", which needs to go into a directory called "share" (or you can try "make install" but it could end up anywhere, or nowhere) Start with libnsgif or libnsbmp, they are single-file libraries which will test if your build environment is working as expected. You should be able to build them with "make TARGET=amigaos3 BUILD=release PREFIX=/path/to/buildsystem", you might not need the target bit but the makefiles expect AmigaOS to be AmigaOS 4, so it could potentially cause problems without it. Please read the "getting started coding" page on the wiki http://wiki.netsurf-browser.org
__________________
"Miracles we do at once, the impossible takes a little longer" - AJS on Hyperion Avatar picture is Tabitha by Eric W Schwartz |
|||||||||
|
|
|
|
|
#122 | ||||||||
|
Defender of the Faith
![]()
|
Bummer, I was hoping to be able to download a source archive. I wont use git, so I guess I'll have to let someone else build it. Thanks anyway.
__________________
Near as I can tell this is where I write something under the guise of being innocuous, but really its a pot shot at another persons/peoples choice of Amiga based systems. Unfortunately only I cant see how transparent and petty it makes me look. |
||||||||
|
|
|
|
|
#123 | ||||||||
|
Defender of the Faith
![]()
Join Date: Nov 2007
Posts: 1,229
|
i dont understand whats wrong with git. if i was able to check out the sources in an instant both under cygwin, but also under ubuntu, then everybody is. one needs a linux derivate compiling environment anyway.
|
||||||||
|
|
|
|
|
#124 | |||||||||
|
Defender of the Faith
![]()
Join Date: Nov 2007
Posts: 1,229
|
Quote:
could someone indeed add a "clean" option to the makefile? when i restart make at this point i constantly get: mv: cannot move `gcc-4.5.1' to `/home/huhu/toolchains/m68k-unknown-amigaos/builddir/srcdir/gcc/gcc-4.5.1': Directory not empty and i have to mess with dirs by hand.. |
|||||||||
|
|
|
|
|
#125 | ||||||||
|
Merely Curious
![]()
Join Date: Sep 2011
Posts: 7
|
just delete the entire builddir directory, and it will unpack and patch all over again.
However as all amiga compilers i have downloaded in the last 10 years used really old binutils, I guess you really need 2.14, no idea how to get that from svn though. |
||||||||
|
|
|
|
|
#126 | ||||||||||
|
Defender of the Faith
![]()
Join Date: Nov 2007
Posts: 1,229
|
Quote:
Quote:
|
||||||||||
|
|
|
|
|
#127 | ||||||||
|
Defender of the Faith
![]()
Join Date: Nov 2007
Posts: 1,229
|
most annoying is finding out the correct syntax for all that makefile comandes like svn and stuff.
if i had it all locally and had not to connect to repos all would go faster of course. |
||||||||
|
|
|
|
|
#128 | ||||||||
|
Too much caffeine
![]()
Join Date: Nov 2008
Location: Central Europe
Posts: 90
|
compiling this was pain in the ass,
when something went wrong it started from the begining. you can use make -i to ignore errors and see how far you will go mine "before-merge-with-binutils-2.18" : https://www.dropbox.com/s/drxurxl43n774ge/binutils.7z whole build: https://www.dropbox.com/s/65y3n9gxlzn207i/cross.7z |
||||||||
|
|
|
|
|
#129 | ||||||||
|
Cult Member
![]()
|
When v3.0 is released source archives will be available for download. The 2.9 ones are available now, but as I say it's not worthwhile working with those as 3.0 will be released in the next 2-3 months.
__________________
"Miracles we do at once, the impossible takes a little longer" - AJS on Hyperion Avatar picture is Tabitha by Eric W Schwartz |
||||||||
|
|
|
|
|
#130 | |||||||||
|
Defender of the Faith
![]()
Join Date: Nov 2007
Posts: 1,229
|
Quote:
|
|||||||||
|
|
|
|
|
#131 | ||||||||
|
Defender of the Faith
![]()
Join Date: Nov 2007
Posts: 1,229
|
artur, can you send me the makefile for comparison?
|
||||||||
|
|
|
|
|
#132 | ||||||||
|
Too much caffeine
![]()
Join Date: Nov 2008
Location: Central Europe
Posts: 90
|
sent
|
||||||||
|
|
|
|
|
#133 | ||||||||
|
Defender of the Faith
![]()
Join Date: Nov 2007
Posts: 1,229
|
thanks. looks like you ve left all untouched. okay so just copied binutils to sources dir as binutils-2.14
still after the makefile copied it to /builddir/srcdir/binutils/ complains about denied permission. Code:
cp -r /home/huhu/toolchains/m68k-unknown-amigaos/sources/binutils-2.14 /home/huhu/toolchains/m68k-unknown-amigaos/builddir/srcdir/binutils for p in `ls /home/huhu/toolchains/m68k-unknown-amigaos/recipes/patches/binutils/*.p` ; do patch -d /home/huhu/toolchains/m68k-unknown-amigaos/builddir/srcdir/binutils -p0 <$p ; done patching file gas/app.c touch /home/huhu/toolchains/m68k-unknown-amigaos/builddir/build-steps/binutils-srcdir.d mkdir -p /home/huhu/toolchains/m68k-unknown-amigaos/builddir/binutils cd /home/huhu/toolchains/m68k-unknown-amigaos/builddir/binutils && CFLAGS="-m32" LDFLAGS="-m32" /home/huhu/toolchains/m68k-unknown-amigaos/builddir/srcdir/binutils/configure --prefix=/opt/netsurf/m68k-unknown-amigaos/cross --target=m68k-unknown-amigaos --disable-nls /bin/sh: 1: /home/huhu/toolchains/m68k-unknown-amigaos/builddir/srcdir/binutils/configure: Permission denied make: *** [/home/huhu/toolchains/m68k-unknown-amigaos/builddir/build-steps/binutils.d] Error 126 make: Leaving directory `/home/huhu/toolchains/m68k-unknown-amigaos' huhu@huhu:~/toolchains$ |
||||||||
|
|
|
|
|
#134 | ||||||||
|
Cult Member
![]()
|
chmod 755 /home/huhu/toolchains/m68k-unknown-amigaos/builddir/srcdir/binutils/configure
__________________
"Miracles we do at once, the impossible takes a little longer" - AJS on Hyperion Avatar picture is Tabitha by Eric W Schwartz |
||||||||
|
|
|
|
|
#135 | ||||||||
|
Defender of the Faith
![]()
Join Date: Nov 2007
Posts: 1,229
|
thanks, suspected something like that. coming a little further now.
|
||||||||
|
|
|
![]() |
| Bookmarks |
| Tags |
| 68k , aga , browser , css , ibrowse , replacement |
| Thread Tools | |
| Display Modes | |
|
|