From 795486feb052e77bd3157c5356a262b99e0d11c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Leegwater=20Sim=C3=B5es?= Date: Thu, 12 Oct 2023 14:34:04 +0200 Subject: [PATCH] Add contract compilers configuration --- config/linux.toml | 10 ++++++++++ config/mac.toml | 10 ++++++++++ config/windows.toml | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100644 config/linux.toml create mode 100644 config/mac.toml create mode 100644 config/windows.toml diff --git a/config/linux.toml b/config/linux.toml new file mode 100644 index 0000000000000..a0ca2663f5874 --- /dev/null +++ b/config/linux.toml @@ -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 diff --git a/config/mac.toml b/config/mac.toml new file mode 100644 index 0000000000000..18552261fe33d --- /dev/null +++ b/config/mac.toml @@ -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 diff --git a/config/windows.toml b/config/windows.toml new file mode 100644 index 0000000000000..3843e36c4c58b --- /dev/null +++ b/config/windows.toml @@ -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