From 6b089f1e00938f906dbb78a156957ae0e214b2bd Mon Sep 17 00:00:00 2001 From: frectonz Date: Sat, 19 Oct 2024 00:56:56 +0300 Subject: [PATCH] chore: remove musl builds --- .github/workflows/release.yml | 1 - Cargo.toml | 7 +------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 39961d9..4a0f059 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -108,7 +108,6 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json AWS_LC_SYS_PREBUILT_NASM: 1 - RUSTFLAGS: -C link-arg=-lstdc++ steps: - name: enable windows longpaths run: | diff --git a/Cargo.toml b/Cargo.toml index 6f33087..0df8190 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,15 +49,10 @@ ci = "github" # The installers to generate for each app installers = ["shell", "powershell"] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"] +targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] # Whether to install an updater program install-updater = true # Skip checking whether the specified configuration files are up to date allow-dirty = ["ci"] # Path that installers should place binaries in install-path = "CARGO_HOME" - -[workspace.metadata.dist.dependencies.apt] -musl = { version = "*", targets = ["x86_64-unknown-linux-musl"] } -musl-tools = { version = "*", targets = ["x86_64-unknown-linux-musl"] } -"g++-multilib" = { version = "*", targets = ["x86_64-unknown-linux-musl"] }