Skip to content

Commit 76bdb0d

Browse files
committed
wip
1 parent 2a8f83f commit 76bdb0d

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

brewkit/fixups/Stripper.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export default class Stripper {
1616

1717
execute() {
1818
// on linux we don’t want to accidentally use eg. the just built llvm’s strip
19+
//FIXME like, we can remove this once the build env isn't used during fixups
1920
const strip = Deno.build.os == "linux" ? `${Deno.env.get("PKGX_BIN")}/strip` : "strip";
2021
for (const path of this.paths) {
2122
if (path.string.endsWith(".dylib") || /\.so(\.\d)*$/.test(path.string)) {

projects/gnu.org/glibc/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ homepage: https://www.gnu.org/software/libc/
88
# version: 2.39
99

1010
platforms:
11-
- linux/x86-64
11+
# - linux/x86-64

projects/llvm.org/build.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export default async function build({ prefix, version, tag, deps }: BuildOptions
5050
-S ./llvm
5151
-B ./o
5252
-G Ninja
53+
-Wno-dev
5354
5455
-DCMAKE_INSTALL_PREFIX=${prefix}
5556

0 commit comments

Comments
 (0)