SDKBuild » History » Version 4
  Denis 'GNUtoo'  Carikli, 04/25/2011 09:46 AM 
  
| 1 | 4 | Denis 'GNUtoo' Carikli | == Setup == | 
|---|---|---|---|
| 2 | The setup is the same than for your phone(refer to [wiki:BuildDream The HTC Dream page] ) | ||
| 3 | 1 | Denis 'GNUtoo' Carikli | == Each time you want to build replicant 2.2 SDK == | 
| 4 | 2 | Denis 'GNUtoo' Carikli | Open a new shell and do: | 
| 5 | 1 | Denis 'GNUtoo' Carikli | {{{ | 
| 6 | cd ~/replicant-2.2 | ||
| 7 | ../bin/repo sync | ||
| 8 | source build/envsetup.sh | ||
| 9 | export ANDROID_JAVA_HOME=$JAVA_HOME | ||
| 10 | make -j$(echo "$(grep 'processor' /proc/cpuinfo | wc -l ) + 1" | bc) sdk #uses arguments like -j9 to speed up build in case of multi-core cpu | ||
| 11 | }}} | ||
| 12 | 3 | Denis 'GNUtoo' Carikli | Note that we don't run the lunch command |