1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-23 19:21:59 +03:00

Updating linux build scripts, etc for Arduino 0017.

This commit is contained in:
David A. Mellis
2009-08-03 20:57:46 +00:00
parent 777e7cd30d
commit c7b70fce3a
7 changed files with 11967 additions and 170 deletions

20
build/linux/dist/arduino vendored Executable file
View File

@ -0,0 +1,20 @@
#!/bin/sh
APPDIR="$(dirname -- "${0}")"
for LIB in \
java/lib/rt.jar \
java/lib/tools.jar \
lib/*.jar \
;
do
CLASSPATH="${CLASSPATH}:${APPDIR}/${LIB}"
done
export CLASSPATH
LD_LIBRARY_PATH=`pwd`/lib:${LD_LIBRARY_PATH}
export LD_LIBRARY_PATH
export PATH="${APPDIR}/java/bin:${PATH}"
java processing.app.Base