mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
Generate dynlib strings as a single rope (#8247)
In order not to trip the optimization in genInfixCall we have to do so. The same trick is also used in setExternName. Fixes #8241
This commit is contained in:
@@ -574,11 +574,13 @@ proc loadDynamicLib(m: BModule, lib: PLib) =
|
||||
if lib.name == nil: internalError(m.config, "loadDynamicLib")
|
||||
|
||||
proc mangleDynLibProc(sym: PSym): Rope =
|
||||
# we have to build this as a single rope in order not to trip the
|
||||
# optimization in genInfixCall
|
||||
if sfCompilerProc in sym.flags:
|
||||
# NOTE: sym.loc.r is the external name!
|
||||
result = rope(sym.name.s)
|
||||
else:
|
||||
result = "Dl_$1_" % [rope(sym.id)]
|
||||
result = rope(strutils.`%`("Dl_$1_", $sym.id))
|
||||
|
||||
proc symInDynamicLib(m: BModule, sym: PSym) =
|
||||
var lib = sym.annex
|
||||
|
||||
7
tests/cpp/t8241.nim
Normal file
7
tests/cpp/t8241.nim
Normal file
@@ -0,0 +1,7 @@
|
||||
discard """
|
||||
targets: "cpp"
|
||||
action: "compile"
|
||||
"""
|
||||
|
||||
proc foo(): cstring {.importcpp: "", dynlib: "".}
|
||||
echo foo()
|
||||
Reference in New Issue
Block a user