Changes between Version 3 and Version 4 of UsersGuide/CompilingFromSource
- Timestamp:
- 2011-03-18T08:47:48Z (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersGuide/CompilingFromSource
v3 v4 45 45 == 4. Configure and build == 46 46 47 Go to the source root and start the build process47 Go back to the source root and start the build process 48 48 49 49 {{{ 50 50 cd ../.. 51 make 51 make PROFILE=ia32 52 52 }}} 53 53 54 The configuration menu will appear. Select ''Load preconfigured defaults...'', ''ia32'' and ''Done''.54 Now HelenOS should automatically start building. 55 55 56 56 '''Note:''' Do not select a different compiler! If you use ''gcc_native'' instead of ''gcc_cross'', it won't work, so please don't ask in the mailing list! Building HelenOS with a native compiler is '''not supported'''! 57 58 == 5. Run it == 59 60 When you get the command line back, there should be an `image.iso` file in the source root directory. If you have Qemu, you should be able to start HelenOS by running 61 62 {{{ 63 qemu -cdrom image.iso 64 }}} 65 66 there are also some start scripts and configuration files for other emulators in `contrib/conf`.