Skip to content

Commit 429a815

Browse files
committed
fix(git): set runtime library path for linux
1 parent 8583177 commit 429a815

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/git/tangram.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ export const default_ = tg.target(async (...args: std.Args<Arg>) => {
5858
source: source_,
5959
} = await std.args.apply<Arg>(...args);
6060

61+
const os = std.triple.os(host);
62+
6163
const sourceDir = source_ ?? source();
6264

6365
const configure = {
@@ -90,6 +92,7 @@ export const default_ = tg.target(async (...args: std.Args<Arg>) => {
9092
env,
9193
phases,
9294
sdk,
95+
setRuntimeLibraryPath: os === "linux",
9396
source: sourceDir,
9497
},
9598
autotools,

0 commit comments

Comments
 (0)