-
Notifications
You must be signed in to change notification settings - Fork 137
gcc14 14.2.0 #1286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
gcc14 14.2.0 #1286
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
60f57d9
gcc14 14.2.0
mistydemeo f44a4ac
isl018 0.18
mistydemeo d174491
gcc/gcc8: use isl018
mistydemeo 8e5d694
gcc7: use isl018
mistydemeo 84fec06
cloog: use isl018
mistydemeo 3250f2f
isl 0.27
mistydemeo 65fab5e
isl: add bottle
mistydemeo 4278bbe
isl027 0.27
mistydemeo 0fe625d
isl018: add bottle
mistydemeo 4749028
isl027: add bottle
mistydemeo 7103d76
gcc8: add bottle
mistydemeo 8f696a4
gcc14: promote to gcc
mistydemeo df4ccc7
gcc: add bottle
mistydemeo 8097265
gcc8: no longer conflicts with gcc
mistydemeo a9ddeb0
compilers: add support for gcc-14
mistydemeo be5b927
ENV: update c++11 regex
mistydemeo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
class Isl018 < Formula | ||
desc "Integer Set Library for the polyhedral model" | ||
homepage "https://libisl.sourceforge.io" | ||
# Note: Always use tarball instead of git tag for stable version. | ||
# | ||
# Currently isl detects its version using source code directory name | ||
# and update isl_version() function accordingly. All other names will | ||
# result in isl_version() function returning "UNKNOWN" and hence break | ||
# package detection. | ||
url "https://libisl.sourceforge.io/isl-0.18.tar.bz2" | ||
mirror "https://gcc.gnu.org/pub/gcc/infrastructure/isl-0.18.tar.bz2" | ||
sha256 "6b8b0fd7f81d0a957beb3679c81bbb34ccc7568d5682844d8924424a0dadcb1b" | ||
|
||
bottle do | ||
cellar :any | ||
sha256 "978dc72f4ff0f2ad9c67ed726affd2f8c71f91d6048067d9827b3adb0ea2ff0d" => :tiger_altivec | ||
end | ||
|
||
head do | ||
url "https://repo.or.cz/r/isl.git" | ||
|
||
depends_on "autoconf" => :build | ||
depends_on "automake" => :build | ||
depends_on "libtool" => :build | ||
end | ||
|
||
keg_only "Conflicts with isl." | ||
|
||
depends_on "gmp" | ||
|
||
def install | ||
system "./autogen.sh" if build.head? | ||
system "./configure", "--disable-dependency-tracking", | ||
"--disable-silent-rules", | ||
"--prefix=#{prefix}", | ||
"--with-gmp=system", | ||
"--with-gmp-prefix=#{Formula["gmp"].opt_prefix}" | ||
system "make", "check" | ||
system "make", "install" | ||
(share/"gdb/auto-load").install Dir["#{lib}/*-gdb.py"] | ||
end | ||
|
||
test do | ||
(testpath/"test.c").write <<-EOS.undent | ||
#include <isl/ctx.h> | ||
|
||
int main() | ||
{ | ||
isl_ctx* ctx = isl_ctx_alloc(); | ||
isl_ctx_free(ctx); | ||
return 0; | ||
} | ||
EOS | ||
system ENV.cc, "test.c", "-L#{lib}", "-lisl", "-o", "test" | ||
system "./test" | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
class Isl027 < Formula | ||
desc "Integer Set Library for the polyhedral model" | ||
homepage "https://libisl.sourceforge.io" | ||
# Note: Always use tarball instead of git tag for stable version. | ||
# | ||
# Currently isl detects its version using source code directory name | ||
# and update isl_version() function accordingly. All other names will | ||
# result in isl_version() function returning "UNKNOWN" and hence break | ||
# package detection. | ||
url "https://libisl.sourceforge.io/isl-0.27.tar.xz" | ||
sha256 "6d8babb59e7b672e8cb7870e874f3f7b813b6e00e6af3f8b04f7579965643d5c" | ||
|
||
bottle do | ||
cellar :any | ||
sha256 "d4b0640fbfb124dd4c22330d883d54d70956339f037a9218141649b1068b9181" => :tiger_altivec | ||
end | ||
|
||
head do | ||
url "https://repo.or.cz/r/isl.git" | ||
|
||
depends_on "autoconf" => :build | ||
depends_on "automake" => :build | ||
depends_on "libtool" => :build | ||
end | ||
|
||
keg_only "Conflicts with isl." | ||
|
||
depends_on "gmp" | ||
|
||
def install | ||
system "./autogen.sh" if build.head? | ||
system "./configure", "--disable-dependency-tracking", | ||
"--disable-silent-rules", | ||
"--prefix=#{prefix}", | ||
"--with-gmp=system", | ||
"--with-gmp-prefix=#{Formula["gmp"].opt_prefix}" | ||
system "make" | ||
system "make", "install" | ||
(share/"gdb/auto-load").install Dir["#{lib}/*-gdb.py"] | ||
end | ||
|
||
test do | ||
(testpath/"test.c").write <<-EOS.undent | ||
#include <isl/ctx.h> | ||
|
||
int main() | ||
{ | ||
isl_ctx* ctx = isl_ctx_alloc(); | ||
isl_ctx_free(ctx); | ||
return 0; | ||
} | ||
EOS | ||
system ENV.cc, "test.c", "-L#{lib}", "-lisl", "-o", "test" | ||
system "./test" | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.