-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This requires two main changes: - An update to the nixpkgs patch. It is now based on this draft PR: NixOS/nixpkgs#352629 - An update to the Lean runtime, as Lean is updated to v4.10.0. The changes come from Lean commit 0a1a855ba80e51515570439f3d73d3d9414ac053.
- Loading branch information
Showing
9 changed files
with
178 additions
and
214 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 39d3adfb1a91cff9a49172c3e17e6632a00f4b35 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Gy=C3=B6rgy=20Kurucz?= <[email protected]> | ||
Date: Thu, 31 Oct 2024 15:24:34 +0100 | ||
Subject: [PATCH] [HACK DO NOT MERGE] -ffunction-sections | ||
|
||
--- | ||
pkgs/development/compilers/llvm/common/libcxx/default.nix | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git a/pkgs/development/compilers/llvm/common/libcxx/default.nix b/pkgs/development/compilers/llvm/common/libcxx/default.nix | ||
index 57fd748d0f39..8be9c118d7f5 100644 | ||
--- a/pkgs/development/compilers/llvm/common/libcxx/default.nix | ||
+++ b/pkgs/development/compilers/llvm/common/libcxx/default.nix | ||
@@ -129,6 +129,8 @@ in | ||
stdenv.mkDerivation (rec { | ||
inherit pname version cmakeFlags patches; | ||
|
||
+ NIX_CFLAGS_COMPILE = [ "-ffunction-sections" ]; | ||
+ | ||
src = src'; | ||
|
||
outputs = [ "out" "dev" ]; | ||
-- | ||
2.47.0 | ||
|
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
Oops, something went wrong.