I just verified the build with doing the following:
$ cd /media/ramdisk
$ mkdir work
$ cd work
$ mkdir arosbuilds
$ cd arosbuilds
$ git clone https://github.com/deadw00d/AROS.git AROS
$ cp ./AROS/scripts/rebuild.sh .
$ /usr/bin/time --format='%C took %e seconds' ./rebuild.sh
The shell presents a menu:
rebuild v1.9, select an option:
0) exit
1) toolchain-core-x86_64
2) core-linux-x86_64 (DEBUG)
3) core-pc-x86_64
4) core-contrib-x86_64
5) core-linux-x86_64
11) toolchain-core-m68k
12) core-amiga-m68k
13) core-amiga-m68k (SERIAL DEBUG)
14) core-contrib-m68k
21) toolchain-core-armhf
22) core-linux-armhf (DEBUG)
Because I wanted to verify the build for x86_64, I selected option 1.
After a while that returned:
blah blah from build
./rebuild.sh took 969.47 seconds
And got me a prompt again.
Then I re-ran the rebuild script
$ /usr/bin/time --format='%C took %e seconds' ./rebuild.sh
Again the menu is prompted.
This time we need to select what we want to build (still x86_64).
- for a Linux hosted AROS build, select either 2 or 5
- for building a native 64 bit AROS, select 3
I opted for option 2.
After a while that returned:
blah blah from build
./rebuild.sh took 899.22 seconds
That is where I left things but you could also opt for re-running the rebuild script to try build the x86_64 core contrib.
... Or re-run the rebuild script and select any of the other options that you wish to build for ofc.
Gist of it is you can use the rebuild script to let it build things for you or read the script (and other scripts that it includes) in order to determine the exact process of how AROS is build for a particular target.
If that worked for you then you have a full working standalone AROS cross-compiler and generated the Linux hosted version of x86_64 AROS.
In case wondering: the results are from a 64 bit machine, native running debian testing (bookworm) and rebuild script compiled on/to a 12GB ramdisk. The end result seem to occupies 3.7 GB of files (donwloaded, extracted and/or compiled). Depending on your network connection the time it takes to build may vary.