diff options
| -rw-r--r-- | tools/pef-amd64-cxxdrv.cc | 2 | ||||
| -rw-r--r-- | tools/pef-arm64-cdrv.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/pef-amd64-cxxdrv.cc b/tools/pef-amd64-cxxdrv.cc index 274df09..06add5d 100644 --- a/tools/pef-amd64-cxxdrv.cc +++ b/tools/pef-amd64-cxxdrv.cc @@ -17,7 +17,7 @@ static auto kPath = "/usr/local/lib/libCompilerKit.dylib"; static auto kSymbol = "CompilerCPlusPlusAMD64"; Int32 main(Int32 argc, Char const* argv[]) { - CompilerKitDylib handler = dlopen(kPath, RTDK_LAZY | RTDK_GLOBAL); + CompilerKitDylib handler = dlopen(kPath, RTLD_LAZY | RTLD_GLOBAL); if (!handler) { kStdOut; diff --git a/tools/pef-arm64-cdrv.cc b/tools/pef-arm64-cdrv.cc index 1d2822b..8db5285 100644 --- a/tools/pef-arm64-cdrv.cc +++ b/tools/pef-arm64-cdrv.cc @@ -17,7 +17,7 @@ static auto kPath = "/usr/local/lib/libCompilerKit.dylib"; static auto kSymbol = "CompilerCLangARM64"; Int32 main(Int32 argc, Char const* argv[]) { - CompilerKitDylib handler = dlopen(kPath, RTDK_LAZY | RTDK_GLOBAL); + CompilerKitDylib handler = dlopen(kPath, RTLD_LAZY | RTLD_GLOBAL); if (!handler) { kStdOut; |
