diff options
Diffstat (limited to 'compiler/rodimpl.nim')
-rw-r--r-- | compiler/rodimpl.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rodimpl.nim b/compiler/rodimpl.nim index 94fd792bf..188a32dc4 100644 --- a/compiler/rodimpl.nim +++ b/compiler/rodimpl.nim @@ -851,6 +851,8 @@ proc replay(g: ModuleGraph; module: PSym; n: PNode) = extccomp.addLinkOption(g.config, n[1].strVal) of "passc": extccomp.addCompileOption(g.config, n[1].strVal) + of "localpassc": + extccomp.addLocalCompileOption(g.config, n[1].strVal, toFullPathConsiderDirty(g.config, module.info.fileIndex)) of "cppdefine": options.cppDefine(g.config, n[1].strVal) of "inc": |