Skip to content

Commit

Permalink
Add contract compilers configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Leegwater Simões committed Oct 12, 2023
1 parent 4f05e95 commit 795486f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions config/linux.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Includes one of the default files in src/bootstrap/defaults
profile = "dist"
change-id = 115898

[build]
host = ["x86_64-unknown-linux-gnu"]
target = ["wasm32-unknown-unknown", "wasm64-unknown-unknown"]

[rust]
lld = true
10 changes: 10 additions & 0 deletions config/mac.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Includes one of the default files in src/bootstrap/defaults
profile = "dist"
change-id = 115898

[build]
host = ["x86_64-apple-darwin", "aarch64-apple-darwin"]
target = ["wasm32-unknown-unknown", "wasm64-unknown-unknown"]

[rust]
lld = true
10 changes: 10 additions & 0 deletions config/windows.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Includes one of the default files in src/bootstrap/defaults
profile = "dist"
change-id = 115898

[build]
host = ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]
target = ["wasm32-unknown-unknown", "wasm64-unknown-unknown"]

[rust]
lld = true

0 comments on commit 795486f

Please sign in to comment.