diff options
-rw-r--r-- | Mach/BuildingOskitMach.mdwn | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Mach/BuildingOskitMach.mdwn b/Mach/BuildingOskitMach.mdwn index 837a219a..cbda478b 100644 --- a/Mach/BuildingOskitMach.mdwn +++ b/Mach/BuildingOskitMach.mdwn @@ -82,8 +82,7 @@ The attached [[ATTACHURLmodulesx86pc]], or [[ATTACHURLmodules-lightx86pc]], is a # CC=gcc-2.95 \ CFLAGS="-g" \ ../configure --prefix=/usr/local \ - --enable-debug \ - --enable-indirect-osenv + --enable-debug # make # sudo make install @@ -98,9 +97,9 @@ Different to its half sister, the OSKit-Mach kernel does _not_ need a cross comp # cd build # MIG=/usr/local/bin/mig \ CC=gcc-3.2 \ - CFLAGS="-g -O1" \ + CFLAGS="-g -O" \ OSKIT_LIBDIR=/usr/local/lib/oskit \ - ../configure --prefix=/gnu --enable-debug + ../configure --prefix=/gnu **_Building:_** @@ -117,7 +116,7 @@ Thus, to build a IDE capable kernel with 3Com Vortex Boomerang support you use t # sudo make install # sudo gzip -f /gnu/boot/oskit-mach -If you want to use tftp to download the kernel from Grub and don't care about the symbols I recommend either stripping or removing the `--debug` and `-g` statements. +If you want to use tftp to download the kernel from Grub and don't care about the symbols I recommend either stripping or removing the `--enable-debug` and `-g` statements. ## <a name="Debugging"> Debugging </a> |