diff options
author | Lynn C. Rees <lcrees@gmail.com> | 2017-11-14 12:49:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-14 12:49:18 -0700 |
commit | b8fce9c58f738661e40e24c17431ff17dab3481e (patch) | |
tree | b8458e14a367d8bf3879692a96d642e6de315efd | |
parent | eab7c88ce98ca345959c39d62cf6dfee26def3c7 (diff) | |
download | Nim-b8fce9c58f738661e40e24c17431ff17dab3481e.tar.gz |
Clarify compiler plugin support
-rw-r--r-- | compiler/pluginsupport.nim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/pluginsupport.nim b/compiler/pluginsupport.nim index 19a0bc84d..f67942c97 100644 --- a/compiler/pluginsupport.nim +++ b/compiler/pluginsupport.nim @@ -7,8 +7,9 @@ # distribution, for details about the copyright. # -## Plugin support for the Nim compiler. Right now they -## need to be build with the compiler, no DLL support. +## Plugin support for the Nim compiler. Right now plugins +## need to be built with the compiler only: plugins using +## DLLs or the FFI will not work. import ast, semdata, idents |