diff options
author | Miran <narimiran@disroot.org> | 2021-09-29 11:14:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 11:14:47 +0200 |
commit | b74b914e4f36199797b77e98bd2d771b4056a0d6 (patch) | |
tree | a9ade47091ececeb35ec0bdb36ae087e914a9dcc /config | |
parent | f061971a9be5222f0f158f605220f3bda42f7488 (diff) | |
download | Nim-b74b914e4f36199797b77e98bd2d771b4056a0d6.tar.gz |
[backport] use old style hints in .cfg files (#18917)
refs #18085
Diffstat (limited to 'config')
-rw-r--r-- | config/nim.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/nim.cfg b/config/nim.cfg index c0a844e03..3b964d124 100644 --- a/config/nim.cfg +++ b/config/nim.cfg @@ -13,8 +13,8 @@ cc = gcc # additional options always passed to the compiler: --parallel_build: "0" # 0 to auto-detect number of processors -hint:LineTooLong:off -#hint:XDeclaredButNotUsed:off +hint[LineTooLong]=off +#hint[XDeclaredButNotUsed]=off # Examples of how to setup a cross-compiler: |