Skip to content

Commit

Permalink
Build GCC 14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
reznikmm committed Aug 18, 2024
1 parent 7eed2a8 commit 2c31116
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions specs/gcc.anod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ patch_name = "ld"
class GCC(spec("gh-artifact")):
@property
def version(self):
return "14.1.0"
return "14.2.0"

@property
def tarball(self):
Expand All @@ -30,7 +30,7 @@ class GCC(spec("gh-artifact")):
if not self.host_is_macos_arm
else
"https://github.com/iains/gcc-14-branch/archive/refs/"
+ "tags/gcc-14.1-darwin-r1.tar.gz"
+ "tags/gcc-14.2-darwin-r1.tar.gz"
)
),
self.LocalSourceBuilder(name=patch_name)
Expand Down
10 changes: 5 additions & 5 deletions specs/release_package.anod
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ class ReleasePackage(spec("common")):
return "1"
elif package == "gnat":
if self.env.target.triplet == "arm-eabi":
return "3"
return "1"
elif self.env.target.triplet == "riscv64-elf":
return "3"
return "1"
elif self.env.target.triplet == "avr-elf":
return "3"
return "1"
elif self.env.target.triplet == "xtensa-esp32-elf":
return "3"
return "1"
else:
return "3"
return "1"

@property
def release_name(self):
Expand Down

0 comments on commit 2c31116

Please sign in to comment.