Changes between Version 58 and Version 59 of Linux build instructions
- Timestamp:
- Apr 14, 2009 10:29:24 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Linux build instructions
v58 v59 100 100 If it finds everything it needs, it will create a file called '!AutoConfig.kmk' containing paths to the various tools on your system. Also, it will create an environment setup script called `env.sh`. This step only has to be done once (if something changes in your build tool setup, you might have to repeat it but keep in mind that both output files will be overwritten). 101 101 102 The switch ''--disable-hardening'' should '''not''' be used for building packages for redistribution or for production use. 103 102 104 2. Whenever you want to build !VirtualBox, you have to open a shell and source the generated environment setup script 'env.sh', i.e. do 103 105 {{{ … … 114 116 }}} 115 117 In case you have more than one CPU core, kmk will automatically do a parallel build. 118 119 4. If you made a ''hardened'' build (that is, you omitted the ''--disable-hardened'' switch from configure) you have to set some symbolic links manually to be able to start VMs from the bin/ directory: 120 {{{ 121 cd out/linux.x86/release/bin/components 122 ln -s ../VBoxDDU.so . 123 ln -s ../VBoxREM.so . 124 ln -s ../VBoxRT.so . 125 ln -s ../VBoxVMM.so . 126 ln -s ../VBoxXPCOM.so . 127 }}} 116 128 117 129