Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
gpucloudsim
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LPDS
gpucloudsim
Commits
c1f1c6a1
Commit
c1f1c6a1
authored
Mar 31, 2012
by
Anton Beloglazov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed the ant building problem: added Flanagan's library to the classpath; updated the readme.txt
parent
dc8f1522
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
27 deletions
+33
-27
build.xml
documentation/src/main/resources/build.xml
+5
-1
readme.txt
documentation/src/main/resources/readme.txt
+28
-26
No files found.
documentation/src/main/resources/build.xml
View file @
c1f1c6a1
...
@@ -36,6 +36,9 @@ Acknowledgement:
...
@@ -36,6 +36,9 @@ Acknowledgement:
This is the build file for CloudSim
This is the build file for CloudSim
</description>
</description>
<!-- location of libraries -->
<property
name=
"classpath"
location=
"./jars/flanagan.jar"
/>
<!-- location to store Java classes -->
<!-- location to store Java classes -->
<property
name=
"class.dir"
location=
"./classes"
/>
<property
name=
"class.dir"
location=
"./classes"
/>
...
@@ -51,7 +54,8 @@ Acknowledgement:
...
@@ -51,7 +54,8 @@ Acknowledgement:
<!-- rule to compile CloudSim source files -->
<!-- rule to compile CloudSim source files -->
<target
name=
"build"
depends=
"prepare"
>
<target
name=
"build"
depends=
"prepare"
>
<javac
srcdir=
"${src.dir}"
destdir=
"${class.dir}"
classpath=
"${classpath}"
/>
<javac
srcdir=
"${src.dir}"
destdir=
"${class.dir}"
classpath=
"${classpath}"
includeantruntime=
"false"
/>
</target>
</target>
<!-- Rule for making a jar file.
<!-- Rule for making a jar file.
...
...
documentation/src/main/resources/readme.txt
View file @
c1f1c6a1
...
@@ -57,7 +57,24 @@ To understand how to use CloudSim, please go through the examples provided
...
@@ -57,7 +57,24 @@ To understand how to use CloudSim, please go through the examples provided
in the examples/ directory.
in the examples/ directory.
6. Compiling CloudSim: using Ant
6. Downloading and using external jars
---------------------------------------
Some of the algorithms in the power package require Michael Thomas Flanagan's
Java Scientific Library. In order to compile CloudSim, it is necessary to
download this library. The library can be downloaded from:
http://www.ee.ucl.ac.uk/~mflanaga/java/
Once the library is downloaded, copy it to the jars/ directory. If you are running
Linux, you can just run the ./install-flanagan.sh script, that will download the
library and place it in the jars/ directory.
Please, make sure that, by using such library, you are respecting the terms of use
defined by the software's author.
7. Compiling CloudSim: using Ant
--------------------------------
--------------------------------
This release contains a simple buildfile for compiling CloudSim classes.
This release contains a simple buildfile for compiling CloudSim classes.
...
@@ -79,19 +96,4 @@ Note:
...
@@ -79,19 +96,4 @@ Note:
* You need to set up PATH for ant in Windows and/or Unix.
* You need to set up PATH for ant in Windows and/or Unix.
7. Downloading and using external jars
---------------------------------------
Some of the algorithms in the power package require Michael Thomas Flanagan's
Java Scientific Library. This library can be downloaded from
http://www.ee.ucl.ac.uk/~mflanaga/java/
Once the library is downloaded, copy it to the jars/ directory. If you are running
Linux, you can just run the ./install-flanagan.sh script, that will download the
library and place it in the jars/ directory.
Please, make sure that, by using such library, you are respecting the terms of use
defined by the software's author.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment