Skip to content

Commit 2a0a403

Browse files
committed
Fix x86_64 targets
1 parent b92cedc commit 2a0a403

3 files changed

+3
-3
lines changed

update_formulaes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def fetch_targets_from_latest_release():
4141
if target not in targets:
4242
targets[target] = {
4343
"version": version,
44-
"name": target.title().replace("-", ""),
44+
"name": target.title().replace("-", "").replace("_", ""),
4545
"description": f"{target} Toolchain",
4646
}
4747
if arch == "aarch64":

x86_64-unknown-linux-gnu.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class X86_64UnknownLinuxGnu < Formula
1+
class X8664UnknownLinuxGnu < Formula
22
desc "x86_64-unknown-linux-gnu Toolchain"
33
homepage "https://github.com/messense/homebrew-macos-cross-toolchains"
44
license "GPL-3.0-or-later" => { with: "GCC-exception-3.1" }

x86_64-unknown-linux-musl.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class X86_64UnknownLinuxMusl < Formula
1+
class X8664UnknownLinuxMusl < Formula
22
desc "x86_64-unknown-linux-musl Toolchain"
33
homepage "https://github.com/messense/homebrew-macos-cross-toolchains"
44
license "GPL-3.0-or-later" => { with: "GCC-exception-3.1" }

0 commit comments

Comments
 (0)