Changes between Version 2 and Version 3 of Development/Building
- Timestamp:
- 07/23/09 12:49:40 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Development/Building
v2 v3 19 19 20 20 21 == Builing the compiler and runtime system==21 == Builing == 22 22 23 1. Build the compiler, runtime system and externallibraries.23 1. Build the compiler, runtime system, external libraries and base libraries. 24 24 {{{ 25 25 $ make deps … … 27 27 }}} 28 28 29 == Building the base libraries == 29 == Building the base libraries separately == 30 31 This can be useful if you've been hacking on the compiler and want to test it by re-compiling the base libs. 30 32 31 33 1. Build the base libraries (with optimisations enabled) 34 {{{ 35 $ make libs 36 }}} 37 38 or alternately: 32 39 {{{ 33 40 $ bin/ddc -O -make library/Prelude.ds 34 41 }}} 42 43
