Skip to content

Commit

Permalink
[ecc] Support producing standalone executables (#236)
Browse files Browse the repository at this point in the history
* Tidy the code

* Tidy the code

* Make CI happy

* Add license header for some new files

* add license header

* Clean the code

* Tidy the code

* Format the code

* Working standalone generator

* Make rust clippy happy

* Format code

* Add license header for some files
  • Loading branch information
Officeyutong committed May 20, 2023
1 parent 26c8976 commit d86a5f9
Show file tree
Hide file tree
Showing 19 changed files with 1,501 additions and 946 deletions.
1 change: 1 addition & 0 deletions compiler/cmd/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
workspace
dump*
248 changes: 246 additions & 2 deletions compiler/cmd/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion compiler/cmd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ repository = "https://github.com/eunomia-bpf/eunomia-bpf"
[dependencies]
regex = "1"
run_script = "^0.10.0"
anyhow = "1.0"
home = "0.5.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand All @@ -23,6 +22,9 @@ tar = "0.4.38"
fs_extra = "1.3.0"
tempfile = "3.5.0"
clap = { version = "4.2.7", features = ["derive"] }
log = "0.4.17"
flexi_logger = "0.25.4"
anyhow = { version = "1.0.71", features = ["backtrace"] }

[build-dependencies]
anyhow = "1.0.71"
Expand Down

0 comments on commit d86a5f9

Please sign in to comment.