Skip to content

Commit

Permalink
Fix x86_64 targets
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Sep 23, 2024
1 parent b92cedc commit 2a0a403
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion update_formulaes.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def fetch_targets_from_latest_release():
if target not in targets:
targets[target] = {
"version": version,
"name": target.title().replace("-", ""),
"name": target.title().replace("-", "").replace("_", ""),
"description": f"{target} Toolchain",
}
if arch == "aarch64":
Expand Down
2 changes: 1 addition & 1 deletion x86_64-unknown-linux-gnu.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class X86_64UnknownLinuxGnu < Formula
class X8664UnknownLinuxGnu < Formula
desc "x86_64-unknown-linux-gnu Toolchain"
homepage "https://github.com/messense/homebrew-macos-cross-toolchains"
license "GPL-3.0-or-later" => { with: "GCC-exception-3.1" }
Expand Down
2 changes: 1 addition & 1 deletion x86_64-unknown-linux-musl.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class X86_64UnknownLinuxMusl < Formula
class X8664UnknownLinuxMusl < Formula
desc "x86_64-unknown-linux-musl Toolchain"
homepage "https://github.com/messense/homebrew-macos-cross-toolchains"
license "GPL-3.0-or-later" => { with: "GCC-exception-3.1" }
Expand Down

0 comments on commit 2a0a403

Please sign in to comment.