Changes between Version 1 and Version 2 of dev/setup/raspi-cross-builder
- Timestamp:
- Jul 30, 2012, 10:23:43 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/setup/raspi-cross-builder
v1 v2 18 18 19 19 {{{ 20 #!sh 20 21 $RASPI_SDK_ROOT/tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin 21 22 }}} 22 23 23 == Configuration ==24 == Bitten configuration == 24 25 25 Add the following section to the bitten machine file:26 For Lol Engine autobuilders, add the following section to the bitten machine file: 26 27 27 28 {{{ … … 29 30 version = 0 30 31 }}} 32 33 == Building autoconf projects == 34 35 For simple autoconf projects (using `./configure ; make`) the following command can now be used: 36 37 {{{ 38 #!sh 39 RASPI_INCLUDES="$RASPI_SDK_ROOT/firmware/opt/vc/include" 40 RASPI_LIBS="$RASPI_SDK_ROOT/firmware/opt/vc/lib" 41 42 ./configure --host=arm-bcm2708hardfp-linux-gnueabi \ 43 CPPFLAGS="-I$RASPI_INCLUDES -I$RASPI_INCLUDES/interface/vcos/pthreads" \ 44 LDFLAGS="-L$RASPI_LIBS" 45 46 make 47 }}}