Skip to content

Commit ce6816a

Browse files
committed
Disable node lto to check what fails
1 parent a565df3 commit ce6816a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

overlays/node-lto.nix

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
final: prev: {
2-
nodejs-with-lto = prev.pkgsStatic.nodejs_24.overrideAttrs (attrs: {
3-
LDFLAGS="-Wl,-z,stack-size=8388608";
4-
VARIATION="static";
5-
patches = attrs.patches or [] ++ [./patches/node-lto.patch];
6-
configureFlags = ["--enable-lto" "--fully-static"];
7-
});
2+
nodejs-with-lto = final.nodejs_24;
3+
# nodejs-with-lto = final.pkgsStatic.nodejs_24.overrideAttrs (attrs: {
4+
# LDFLAGS="-Wl,-z,stack-size=8388608";
5+
# VARIATION="static";
6+
# patches = attrs.patches or [] ++ [./patches/node-lto.patch];
7+
# configureFlags = ["--enable-lto" "--fully-static"];
8+
# });
89
}

0 commit comments

Comments
 (0)