-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
guix: use llvm 17 toolchain for darwin targets
- Loading branch information
Showing
12 changed files
with
59 additions
and
143 deletions.
There are no files selected for viewing
This file contains 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 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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,22 @@ | ||
diff --git a/configure.ac b/configure.ac | ||
index 6dc7c698..eebe10a1 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -46,7 +46,7 @@ dnl note that we don't just check if the compiler accepts '-std=x11' | ||
dnl but also that it supports the _Thread_local keyword because some compilers | ||
dnl (e.g. gcc 4.8) accept the command line option but do not implement TLS | ||
saved_CFLAGS="${CFLAGS}" | ||
-CFLAGS="-std=gnu11" | ||
+CFLAGS="${saved_CFLAGS} -std=gnu11" | ||
AC_MSG_CHECKING([if $CC supports -std=gnu11]) | ||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([_Thread_local int x;], [x = 42;])], | ||
[AC_MSG_RESULT([yes]) | ||
@@ -55,7 +55,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([_Thread_local int x;], [x = 42;])], | ||
c_dialect=]) | ||
if test "x$c_dialect" != xgnu; then | ||
dnl fallback check for -std=c11 compiler support (required) | ||
- CFLAGS="-std=c11" | ||
+ CFLAGS="${saved_CFLAGS} -std=c11" | ||
AC_MSG_CHECKING([if $CC supports -std=c11]) | ||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([_Thread_local int x;], [x = 42;])], | ||
[AC_MSG_RESULT([yes])], |
12 changes: 0 additions & 12 deletions
12
contrib/depends/patches/native_cctools/no-build-date.patch
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
contrib/depends/patches/native_libtapi/no_embed_git_rev.patch
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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