Changes between Version 42 and Version 43 of Be a CIVL developer


Ignore:
Timestamp:
02/02/17 05:14:45 (9 years ago)
Author:
ziqing
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Be a CIVL developer

    v42 v43  
    3333a. 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.
    3434a. 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: \\ {{{
     35a. Somewhere on your system, create a plain text file containing exactly the following two lines:
     36{{{
    3637#!/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: \\ {{{
     38java -jar /Path/To/Your/workspace/CIVL/civl.jar $@
     39}}}
     40where "/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{{{
    3842alias civl='java -jar /Path/To/Your/workspace/CIVL/civl.jar'
    39 }}} \\
     43}}}
    4044a. 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.
    4145