mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 13:33:22 +00:00
Limit number of error messages from gcc/clang backend (#14852)
* Limit number of error messages from backend * Avoid duplication of -fmax-errors * make tests/misc/trunner.nim success
This commit is contained in:
@@ -167,17 +167,19 @@ path="$lib/pure"
|
||||
@end
|
||||
@end
|
||||
|
||||
gcc.maxerrorsimpl = "-fmax-errors=3"
|
||||
|
||||
@if macosx or freebsd or openbsd:
|
||||
cc = clang
|
||||
tlsEmulation:on
|
||||
gcc.options.always = "-w"
|
||||
gcc.cpp.options.always = "-w -fpermissive"
|
||||
gcc.options.always %= "-w ${gcc.maxerrorsimpl}"
|
||||
gcc.cpp.options.always %= "-w ${gcc.maxerrorsimpl} -fpermissive"
|
||||
@elif windows:
|
||||
gcc.options.always = "-w -mno-ms-bitfields"
|
||||
gcc.cpp.options.always = "-w -fpermissive -mno-ms-bitfields"
|
||||
gcc.options.always %= "-w ${gcc.maxerrorsimpl} -mno-ms-bitfields"
|
||||
gcc.cpp.options.always %= "-w ${gcc.maxerrorsimpl} -fpermissive -mno-ms-bitfields"
|
||||
@else:
|
||||
gcc.options.always = "-w"
|
||||
gcc.cpp.options.always = "-w -fpermissive"
|
||||
gcc.options.always %= "-w ${gcc.maxerrorsimpl}"
|
||||
gcc.cpp.options.always %= "-w ${gcc.maxerrorsimpl} -fpermissive"
|
||||
@end
|
||||
|
||||
# Configuration for Objective-C compiler:
|
||||
@@ -245,7 +247,7 @@ llvm_gcc.options.size = "-Os"
|
||||
# Configuration for the LLVM CLang compiler:
|
||||
clang.options.debug = "-g"
|
||||
clang.cpp.options.debug = "-g"
|
||||
clang.options.always = "-w"
|
||||
clang.options.always = "-w -ferror-limit=3"
|
||||
clang.options.speed = "-O3"
|
||||
clang.options.size = "-Os"
|
||||
|
||||
|
||||
5
tests/misc/msizeof5.nim.cfg
Normal file
5
tests/misc/msizeof5.nim.cfg
Normal file
@@ -0,0 +1,5 @@
|
||||
# Do not limit number of error messages from backend compiler.
|
||||
gcc.options.always %= "${gcc.options.always} -fmax-errors=100"
|
||||
clang.options.always %= "${clang.options.always} -ferror-limit=100"
|
||||
gcc.cpp.options.always %= "${gcc.cpp.options.always} -fmax-errors=100"
|
||||
clang.cpp.options.always %= "${clang.cpp.options.always} -ferror-limit=100"
|
||||
Reference in New Issue
Block a user