ReturnInfinity / BareMetal-OS-legacy

BareMetal is a 64-bit OS for x86-64 based computers. The OS is written entirely in Assembly while applications can be written in Assembly, C/C++, and Rust.
1.74k stars 303 forks source link

README.md says autoconf -fi #119

Closed ghost closed 7 years ago

ghost commented 7 years ago

README.md says simply "autoconf -fi" but it raise error

Instead, following commands seems works

cd src/BMFS sudo apt-get install automake libtool libtoolize --force aclocal autoheader automake --force-missing --add-missing autoconf -f -i

./configure make sudo make install

ohnx commented 7 years ago

I think the idea is that you typically want to use these scripts to build BareMetal-OS.

Where does the README say to use autoconf -fi? I can't seem to find that.

ghost commented 7 years ago

Oh.. Sorry. I confused with BMFS. https://github.com/ReturnInfinity/BMFS/blob/master/README.md

ohnx commented 7 years ago

I think you should be running autoreconf -fi, and not autoconf -fi. autoreconf automatically calls aclocal, autoheader, and those other commands.

ghost commented 7 years ago

I just checked again. It says "autoreconf -fi" ... sorry.