diff options
author | andri lim <jangko128@gmail.com> | 2018-08-02 17:56:44 +0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-08-02 12:56:44 +0200 |
commit | 78c0ac54070e860ec0ed8ac0b58658f7ad52227a (patch) | |
tree | dc20154f92f6178df405cf8da99612ee2f99323c /compiler/options.nim | |
parent | 674bd7bfad100a07e051e0a310bcf0a64c355a79 (diff) | |
download | Nim-78c0ac54070e860ec0ed8ac0b58658f7ad52227a.tar.gz |
fixes #7827, bindSym enhancement (#8499)
* bindSym power up, working prototype * update bindSym doc * add bindSym test * fix some typo * fix bindSym doc * get rid of specialops field from vm * add experimental: dynamicBindSym
Diffstat (limited to 'compiler/options.nim')
-rw-r--r-- | compiler/options.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index fcbb98fe6..598adf27d 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -116,7 +116,8 @@ type callOperator, parallel, destructor, - notnil + notnil, + dynamicBindSym SymbolFilesOption* = enum disabledSf, writeOnlySf, readOnlySf, v2Sf |