AROS World Exec

General => Help => Topic started by: vbrusca on August 16, 2020, 08:04:33 PM

Title: Linux Hosted Compile - Extras Folder Seems Empty
Post by: vbrusca on August 16, 2020, 08:04:33 PM
I'm having a little trouble with my build the Extras folder on AROS seems empty and only has one folder in it. Here are the setup and compile commands I'm using.

Code: [Select]
//DOWN LOAD AND REFRESH REPOS
git clone https://github.com/aros-development-team/AROS.git
cd AROS
git clone https://github.com/aros-development-team/contrib.git
git submodule update --init --recursive

cd ../

//MAKE DIR SETUP
mkdir aros_build_linux_x86-64
cd aros_build_linux_x86-64/
../AROS/configure --help
../AROS/configure
make

cd ../

//AROS RUN TIME
cd aros_build_linux_x86-64/bin/linux-x86_64/AROS/boot/linux/
./AROSBootstrap

The compilation seems to complete without any issues. I can run the resulting linux hosted aros binary but the Extras folder seems pretty empty compared to the contents of the contrib folder. The only entry in Extras is a folder named Regina. Any help would be awesome, thanks.
Title: Re: Linux Hosted Compile - Extras Folder Seems Empty
Post by: magorium on August 16, 2020, 09:12:38 PM
I seem to be missing you actually making contrib ?
Title: Re: Linux Hosted Compile - Extras Folder Seems Empty
Post by: vbrusca on August 17, 2020, 07:41:27 AM
Ah I see. Thank you very much!