File: defineFarragoRuntime.sh

package info (click to toggle)
eigenbase-farrago 0.9.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,272 kB
  • sloc: java: 210,765; xml: 25,741; sql: 1,953; sh: 573; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Define variables needed by runtime scripts such as farragoServer.
# This script is meant to be sourced from other scripts, not
# executed directly.

BASE_JAVA_ARGS="-ea -esa -cp `cat classpath.gen` \
  -Dnet.sf.farrago.home=. \
  -Djava.util.logging.config.file=trace/FarragoTrace.properties"

SERVER_JAVA_ARGS="-Xss768K ${BASE_JAVA_ARGS}"

# TODO:  trim this
CLIENT_JAVA_ARGS=${BASE_JAVA_ARGS}

SQLLINE_JAVA_ARGS="sqlline.SqlLine"