File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5
5
import sys
6
6
import os
7
7
8
- sys .path .append ("src/libasr" )
8
+ sys .path .append ("src/libasr/src/libasr " )
9
9
import asdl
10
10
11
11
products = []
Original file line number Diff line number Diff line change @@ -2261,9 +2261,9 @@ int main(int argc, char *argv[])
2261
2261
#else
2262
2262
cmd += " llvm-dwarfdump --debug-line " + basename + " .out > " ;
2263
2263
#endif
2264
- cmd += basename + " _ldd.txt && (cd src/libasr/src/libasr; ./dwarf_convert.py ../../"
2265
- + basename + " _ldd.txt ../../" + basename + " _lines.txt ../../"
2266
- + basename + " _lines.dat && ./dat_convert.py ../../"
2264
+ cmd += basename + " _ldd.txt && (cd src/libasr/src/libasr; ./dwarf_convert.py ../../../../ "
2265
+ + basename + " _ldd.txt ../../../../ " + basename + " _lines.txt ../../ ../../"
2266
+ + basename + " _lines.dat && ./dat_convert.py ../../../../ "
2267
2267
+ basename + " _lines.dat)" ;
2268
2268
int status = system (cmd.c_str ());
2269
2269
if ( status != 0 ) {
Original file line number Diff line number Diff line change @@ -94,11 +94,11 @@ std::string get_runtime_library_header_dir()
94
94
|| endswith (dirname, " src\\ bin" )
95
95
|| endswith (dirname, " SRC\\ BIN" )) {
96
96
// Development version
97
- return dirname + " /../libasr/runtime" ;
97
+ return dirname + " /../libasr/src/libasr/ runtime" ;
98
98
} else if (endswith (dirname, " src/lpython/tests" ) ||
99
99
endswith (to_lower (dirname), " src\\ lpython\\ tests" )) {
100
100
// CTest Tests
101
- return dirname + " /../../libasr/runtime" ;
101
+ return dirname + " /../../libasr/src/libasr/ runtime" ;
102
102
} else {
103
103
// Installed version
104
104
return dirname + " /../share/lpython/lib/impure" ;
You can’t perform that action at this time.
0 commit comments