File tree 5 files changed +29
-21
lines changed
5 files changed +29
-21
lines changed Original file line number Diff line number Diff line change 16
16
build :
17
17
runs-on : ${{ matrix.os }}
18
18
19
- name : " ${{ matrix.cpp_compiler }}- ${{ matrix.os }}- ${{ matrix.build_type }}"
19
+ name : " ${{ matrix.os }}( ${{ matrix.build_type }}, LLVM: ${{ matrix.llvm_backend }}) "
20
20
21
21
strategy :
22
22
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
31
31
matrix :
32
32
os : [ubuntu-latest]
33
33
build_type : [RelWithDebInfo]
34
+ llvm_backend : [ON,OFF]
34
35
35
36
steps :
36
37
- uses : actions/checkout@v3
90
91
-DCMAKE_CXX_COMPILER=clang++-18
91
92
-DCMAKE_C_COMPILER=clang-18
92
93
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
94
+ -DENDO_USE_LLVM=${{ matrix.llvm_backend }}
93
95
-GNinja
94
96
-S ${{ github.workspace }}
95
97
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
11
11
set (CMAKE_CXX_EXTENSIONS OFF )
12
12
set (CMAKE_EXPORT_COMPILE_COMMANDS ON )
13
13
14
-
15
14
option (ENDO_USE_LLVM "Use llvm as a backend for the shell" ON )
16
15
17
16
if (NOT DEFINED ENDO_TRACE_VM)
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ target_sources(Shell
15
15
ASTPrinter.cpp
16
16
IRGenerator.cpp
17
17
Parser.cpp
18
- llvm_executor.cpp
19
18
)
20
19
21
20
find_package (Threads REQUIRED)
@@ -35,24 +34,24 @@ set(shell_libs
35
34
36
35
37
36
if (ENDO_USE_LLVM)
38
- find_package (LLVM)
39
- if (LLVM_FOUND)
37
+ find_package (LLVM REQUIRED)
38
+ message (STATUS "Found LLVM ${LLVM_PACKAGE_VERSION} " )
39
+ message (STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR} " )
40
+ include ("${LLVM_DIR} /AddLLVM.cmake" )
40
41
41
- message (STATUS "Found LLVM ${LLVM_PACKAGE_VERSION} " )
42
- message (STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR} " )
43
- include ("${LLVM_DIR} /AddLLVM.cmake" )
44
-
45
- include_directories (${LLVM_INCLUDE_DIRS} )
46
- add_definitions (${LLVM_DEFINITIONS} )
47
- llvm_map_components_to_libnames(llvm_libs analysis core executionengine instcombine object orcjit runtimedyld scalaropts support native)
42
+ include_directories (${LLVM_INCLUDE_DIRS} )
43
+ add_definitions (${LLVM_DEFINITIONS} )
44
+ llvm_map_components_to_libnames(llvm_libs analysis core executionengine instcombine object orcjit runtimedyld scalaropts support native)
48
45
# Link against LLVM libraries
49
- set (shell_libs
50
- ${shell_libs}
51
- ${llvm_libs} )
46
+ set (shell_libs
47
+ ${shell_libs}
48
+ ${llvm_libs} )
52
49
53
- target_compile_definitions (Shell PUBLIC ENDO_USE_LLVM)
54
- endif ()
55
- else ()
50
+ target_sources (Shell
51
+ PUBLIC
52
+ FILE_SET CXX_MODULES FILES
53
+ llvm_executor.cpp)
54
+ target_compile_definitions (Shell PUBLIC ENDO_USE_LLVM)
56
55
endif ()
57
56
58
57
Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: Apache-2.0
2
2
module;
3
3
#include < shell/ProcessGroup.h>
4
+
4
5
#include < crispy/assert.h>
5
6
#include < crispy/utils.h>
6
7
@@ -21,7 +22,9 @@ import IRGenerator;
21
22
import Parser;
22
23
import CoreVM;
23
24
25
+ #if defined(ENDO_USE_LLVM)
24
26
import LLVMBackend;
27
+ #endif
25
28
26
29
export module Shell;
27
30
@@ -171,7 +174,13 @@ export class SystemEnvironment: public Environment
171
174
export class Shell final : public CoreVM::Runtime
172
175
{
173
176
public:
174
- Shell (): Shell(RealTTY::instance(), SystemEnvironment::instance()) {}
177
+ Shell (): Shell(RealTTY::instance(), SystemEnvironment::instance())
178
+ {
179
+
180
+ #if defined(ENDO_USE_LLVM)
181
+ LLVMBackend::init ();
182
+ #endif
183
+ }
175
184
176
185
Shell (TTY& tty, Environment& env): _env { env }, _tty { tty }
177
186
{
Original file line number Diff line number Diff line change 4
4
using namespace std ::string_literals;
5
5
6
6
import Shell;
7
- import LLVMBackend;
7
+
8
8
9
9
std::string_view getEnvironment (std::string_view name, std::string_view defaultValue)
10
10
{
@@ -18,7 +18,6 @@ int main(int argc, char const* argv[])
18
18
19
19
setsid ();
20
20
21
- LLVMBackend::init ();
22
21
23
22
if (argc == 2 )
24
23
// This here only exists for early-development debugging purposes.
You can’t perform that action at this time.
0 commit comments