-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: pass LG_PAGE env configuration to jemalloc via cross (#30)
* fix: pass LG_PAGE env configuration to jemalloc via cross * chore: update config location * chore: fix array parsing * chore: support 64k page size * Revert "chore: support 64k page size" This reverts commit e43bca3. * Revert "Revert "chore: support 64k page size"" This reverts commit 40829fb.
- Loading branch information
1 parent
f9291b0
commit 96e5dcd
Showing
4 changed files
with
32 additions
and
2 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 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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
{ | ||
"ripgrepRepo": "BurntSushi/ripgrep", | ||
"ripgrepTag": "13.0.0" | ||
"ripgrepTag": "13.0.0", | ||
"patches": [ | ||
"0001-feat-pass-env-for-aarch64-unknown-linux-musl-via-cross.patch" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
patches/0001-feat-pass-env-for-aarch64-unknown-linux-musl-via-cross.patch
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,19 @@ | ||
From 2bb7321d024a3f7e28f072223551706ff556d68c Mon Sep 17 00:00:00 2001 | ||
From: deepak1556 <hop2deep@gmail.com> | ||
Date: Tue, 13 Jun 2023 01:09:11 +0900 | ||
Subject: [PATCH] feat: pass env for aarch64-unknown-linux-musl via cross | ||
|
||
diff --git a/Cross.toml b/Cross.toml | ||
index 3b0e4ca..7fd7d06 100644 | ||
--- a/Cross.toml | ||
+++ b/Cross.toml | ||
@@ -9,3 +9,8 @@ image = "burntsushi/cross:mips64-unknown-linux-gnuabi64" | ||
|
||
[target.arm-unknown-linux-gnueabihf] | ||
image = "burntsushi/cross:arm-unknown-linux-gnueabihf" | ||
+ | ||
+[target.aarch64-unknown-linux-musl.env] | ||
+passthrough = [ | ||
+ "JEMALLOC_SYS_WITH_LG_PAGE", | ||
+] | ||
|