Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osv
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Verlässliche Systemsoftware
projects
osv
Commits
60cf8403
Commit
60cf8403
authored
11 years ago
by
Guy Zana
Browse files
Options
Downloads
Patches
Plain Diff
java: cli.jar - make references to classes of cloudius.jar
parent
674d2160
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/build.xml
+3
-1
3 additions, 1 deletion
java/build.xml
java/cli/com/cloudius/util/ELFLoader.java
+2
-1
2 additions, 1 deletion
java/cli/com/cloudius/util/ELFLoader.java
with
5 additions
and
2 deletions
java/build.xml
+
3
−
1
View file @
60cf8403
...
...
@@ -22,7 +22,9 @@
description=
"compile the source "
>
<!-- Compile the java code from ${src} into ${build} -->
<javac
includeantruntime=
"false"
srcdir=
"${src-cloudius}"
destdir=
"${build-cloudius}"
/>
<javac
includeantruntime=
"false"
srcdir=
"${src-cli}"
destdir=
"${build-cli}"
/>
<javac
includeantruntime=
"false"
srcdir=
"${src-cli}"
destdir=
"${build-cli}"
>
<classpath
path=
"${build-cloudius}"
/>
</javac>
</target>
<target
name=
"dist"
depends=
"compile"
...
...
This diff is collapsed.
Click to expand it.
java/cli/com/cloudius/util/ELFLoader.java
+
2
−
1
View file @
60cf8403
...
...
@@ -7,6 +7,7 @@ import sun.org.mozilla.javascript.NativeGlobal;
import
sun.org.mozilla.javascript.ScriptableObject
;
import
sun.org.mozilla.javascript.annotations.JSFunction
;
import
com.cloudius.Config
;
import
com.cloudius.main.RhinoCLI
;
public
class
ELFLoader
extends
ScriptableObject
{
...
...
@@ -15,7 +16,7 @@ public class ELFLoader extends ScriptableObject {
private
static
final
long
serialVersionUID
=
87664098764510039L
;
static
{
System
.
load
(
"/usr/lib/jni/
elf-loader.so"
);
Config
.
loadJNI
(
"
elf-loader.so"
);
}
public
native
static
boolean
run
(
String
[]
argv
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment