blob: d0ef300d44d666c88375af03b8c4539fe947cc16 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* -------------------------------------------
Copyright (C) 2024-2025 Amlal EL Mahrouss, Licensed under Apache 2.0
------------------------------------------- */
/// @file cxxdrv.cc
/// @brief NE C++ frontend compiler.
#include <CompilerKit/Defines.h>
#include <CompilerKit/ErrorID.h>
#include <CompilerKit/Version.h>
#include <CompilerKit/utils/CompilerUtils.h>
#include <CompilerKit/utils/DylibHelpers.h>
#ifdef __APPLE__
static auto kPath = "/usr/local/lib/libCompilerKit.dylib";
#else
static auto kPath = "/usr/lib/libCompilerKit.so";
#endif
static auto kSymbol = "CompilerCLangARM64";
Int32 main(Int32 argc, Char const* argv[]) {
CompilerKitDylib handler = dlopen(kPath, RTLD_LAZY | RTLD_GLOBAL);
if (!handler) {
kStdOut;
std::printf("error: Could not load dylib in %s: %s\n", kPath, dlerror());
return EXIT_FAILURE;
}
CompilerKitEntrypoint entrypoint_cxx = (CompilerKitEntrypoint) dlsym(handler, kSymbol);
if (!entrypoint_cxx) {
kStdOut;
std::printf("error: Could not find entrypoint in %s: %s\n", kPath, dlerror());
dlclose(handler);
return EXIT_FAILURE;
}
auto ret = (entrypoint_cxx(argc, argv) == NECTI_SUCCESS) ? EXIT_SUCCESS : EXIT_FAILURE;
dlclose(handler);
return ret;
}
|