mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-03 20:44:46 +00:00
@@ -454,6 +454,9 @@ Define Effect
|
||||
path for the ``sh`` binary, in cases where it is not
|
||||
located in the default location ``/bin/sh``.
|
||||
``noSignalHandler`` Disable the crash handler from ``system.nim``.
|
||||
``globalSymbols`` Load all ``{.dynlib.}`` libraries with the ``RTLD_GLOBAL``
|
||||
flag on Posix systems to resolve symbols in subsequently
|
||||
loaded libraries.
|
||||
====================== =========================================================
|
||||
|
||||
|
||||
|
||||
@@ -91,7 +91,10 @@ when defined(posix):
|
||||
dlclose(lib)
|
||||
|
||||
proc nimLoadLibrary(path: string): LibHandle =
|
||||
result = dlopen(path, RTLD_NOW)
|
||||
let flags =
|
||||
when defined(globalSymbols): RTLD_NOW or RTLD_GLOBAL
|
||||
else: RTLD_NOW
|
||||
result = dlopen(path, flags)
|
||||
when defined(nimDebugDlOpen):
|
||||
let error = dlerror()
|
||||
if error != nil:
|
||||
|
||||
Reference in New Issue
Block a user