-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathrpaths.js
More file actions
36 lines (31 loc) · 759 Bytes
/
rpaths.js
File metadata and controls
36 lines (31 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const { execSync } = require("child_process");
const path = require('path');
let stdout;
try
{
stdout = execSync("python3-config --ldflags --embed");
}
catch(e)
{
stdout = execSync("python3-config --ldflags");
}
if (stdout)
{
const splits = stdout.toString().trim().split(" ");
// conda hack starts here
try
{
const condaBase = execSync("conda info --base 2>&1");
if (condaBase)
splits.push("-L" + path.join(condaBase.toString().trim(), "lib"));
}
catch(e)
{
}
const result = [];
splits.forEach(s => {
if (s.startsWith("-L"))
result.push("-Wl,-rpath," + s.substring(2));
});
console.log(" " + result.join(" "));
}