Changes between Version 42 and Version 43 of Be a CIVL developer
- Timestamp:
- 02/02/17 05:14:45 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Be a CIVL developer
v42 v43 33 33 a. Navigate to Preferences -> Java -> Build Path -> ClassPath Variables, and then select New to create a classpath variable VSL, and specify its value to be /opt/vsl. 34 34 a. Do a clean build. Everything should compile. Generate the civl.jar by right-clicking (or ctrl-click on OS X) the build.xml file and Run As->Ant Build. 35 a. Somewhere on your system, create a plain text file containing exactly the following two lines: \\ {{{ 35 a. Somewhere on your system, create a plain text file containing exactly the following two lines: 36 {{{ 36 37 #!/bin/sh 37 java -jar /Path/To/Your/workspace/CIVL/civl.jar $@ }}} \\ where "/Path/To/Your/workspace" is replaced with the path to your Eclipse workspace directory. Name this file "civl", put it in your PATH, and make it executable (chmod ugo+x civl). Alternatively, you can define an alias in your .profile, .bash_profile, .bashrc, or equivalent: \\ {{{ 38 java -jar /Path/To/Your/workspace/CIVL/civl.jar $@ 39 }}} 40 where "/Path/To/Your/workspace" is replaced with the path to your Eclipse workspace directory. Name this file "civl", put it in your PATH, and make it executable (chmod ugo+x civl). Alternatively, you can define an alias in your .profile, .bash_profile, .bashrc, or equivalent: 41 {{{ 38 42 alias civl='java -jar /Path/To/Your/workspace/CIVL/civl.jar' 39 }}} \\43 }}} 40 44 a. From a terminal window, execute "civl config". This should find the theorem provers in your PATH and create a file .sarl in your home directory. 41 45
