File tree 7 files changed +1536
-12
lines changed
7 files changed +1536
-12
lines changed Original file line number Diff line number Diff line change 1
1
** /* .py - text
2
+ # GitHub syntax highlighting
3
+ pixi.lock linguist-language =YAML
4
+
5
+ # GitHub syntax highlighting
6
+ pixi.lock linguist-language =YAML linguist-generated =true
Original file line number Diff line number Diff line change @@ -237,3 +237,7 @@ integration_tests/expr_12.c
237
237
238
238
# Interactive Shell
239
239
input
240
+ # pixi environments
241
+ .pixi
242
+ * .egg-info
243
+
Original file line number Diff line number Diff line change @@ -51,10 +51,8 @@ include(CPack)
51
51
set (CPACK_PACKAGE_FILE_NAME lpython-${LFORTRAN_VERSION} -${CMAKE_SYSTEM_NAME} )
52
52
53
53
54
- if (NOT CMAKE_CXX_STANDARD)
55
- set (CMAKE_CXX_STANDARD 17
56
- CACHE STRING "C++ standard" FORCE)
57
- endif ()
54
+ set (CMAKE_CXX_STANDARD 17
55
+ CACHE STRING "C++ standard" FORCE)
58
56
59
57
set (CMAKE_POSITION_INDEPENDENT_CODE ON )
60
58
Original file line number Diff line number Diff line change 3
3
set -e
4
4
set -x
5
5
6
- cmake \
6
+ mkdir -p ./build
7
+ cd build
8
+
9
+ cmake .. \
10
+ -GNinja \
7
11
-DCMAKE_BUILD_TYPE=Debug \
8
12
-DWITH_LLVM=yes \
9
13
-DLPYTHON_BUILD_ALL=yes \
10
14
-DWITH_STACKTRACE=yes \
11
15
-DWITH_RUNTIME_STACKTRACE=yes \
16
+ -DWITH_INTRINSIC_MODULES=yes \
12
17
-DWITH_LSP=no \
13
18
-DWITH_LFORTRAN_BINARY_MODFILES=no \
14
- -DCMAKE_PREFIX_PATH=" $CMAKE_PREFIX_PATH_LPYTHON ; $CONDA_PREFIX " \
19
+ -DCMAKE_PREFIX_PATH=" $PIXI_PROJECT_ROOT /.pixi/envs/host/ " \
15
20
-DCMAKE_INSTALL_PREFIX=` pwd` /inst \
16
- .
17
- cmake --build . -j16 - -target install
21
+
22
+ cmake --build . --target install
You can’t perform that action at this time.
0 commit comments