Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update chen to fix java native image #123

Merged
merged 2 commits into from
Jan 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,18 @@ npm install -g @cyclonedx/cdxgen --omit=optional

## atom native-image

atom v2 is available as a Java native image built using graalvm community edition. The following languages are tested and known to be working.

- C/C++/H
- PHP
- JavaScript/TypeScript
- Python
atom v2 is available as a native image built using graalvm community edition.

```shell
curl -LO https://github.com/AppThreat/atom/releases/download/v2.0.4/atom-amd64
curl -LO https://github.com/AppThreat/atom/releases/download/v2.0.5/atom-amd64
chmod +x atom-amd64
./atom-amd64 --help
```

On Windows

```pwsh
curl -LO https://github.com/AppThreat/atom/releases/download/v2.0.4/atom.exe
curl -LO https://github.com/AppThreat/atom/releases/download/v2.0.5/atom.exe
.\atom.exe --help
```

Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name := "atom"
ThisBuild / organization := "io.appthreat"
ThisBuild / version := "2.0.4"
ThisBuild / version := "2.0.5"
ThisBuild / scalaVersion := "3.3.1"

val chenVersion = "2.0.2"
val chenVersion = "2.0.3"

lazy val atom = Projects.atom

Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"downloadUrl": "https://github.com/AppThreat/atom",
"issueTracker": "https://github.com/AppThreat/atom/issues",
"name": "atom",
"version": "2.0.4",
"version": "2.0.5",
"description": "Atom is a novel intermediate representation for next-generation code analysis.",
"applicationCategory": "code-analysis",
"keywords": [
Expand Down
Loading
Loading