forked from SingaporeClouds/objective-c-verifier
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
24 lines (20 loc) · 1.72 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
This project is forked from the objective-c-verifier project. (https://github.com/SingaporeClouds/objective-c-verifier)
It does Java compilation rather than Objective-C compilation.
The Aptana Studio 3 IDE was used in the development of this project.
======
Notes on installation in Ubuntu
* Install apache first by using "sudo apt-get install apache2"
* Apache configuration is in /etc/apache2 (contrast with Fedora's /etc/httpd). Configuration file is apache2.conf.
* By default, VirtualHosts are defined (referenced indirectly via apache2.conf) in /etc/apache2/sites-enabled/000-default. Open this file and change the following lines as appropriate (or don't change any paths and use the pre-defined ones):
* DocumentRoot /var/www -> set the path to wherever you want your HTTP files to be served from.
* ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ -> Change the second argument to point to the folder containing the CGI files you want to run.
* <Directory "/usr/lib/cgi-bin"> -> Make the same change to point to the folder containing CGI files.
* Inside this directory XML element, add the following line: AddHandler cgi-script cgi pl. This tells Apache to treat files with the extensions .cgi and .pl as scripts to run.
* Run Apache2 via the command "sudo service apache2 start"
* Installation of Sun's JDK for compiling java programs:
* Ensure that the "Canonical Partners" repository for Ubuntu is enabled (http://archive.canonical.com/ubuntu <ubuntu-release-code-name> partner)
* Install the package (via apt-get) sun-java-jdk6
* Choose Sun Java as the default JRE using sudo update-alternatives --config java
* NOTE: The code assumes that
* the java compiler is at /usr/bin/javac
* the java runtime is at /usr/bin/java