From 28a0a174bcf95d0894f579a48807b004cd2a190e Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Tue, 9 Jul 2002 17:01:19 +0000 Subject: [PATCH] Reduce max errors to 5 [SVN r14376] --- metrowerks-tools.jam | 6 +++--- v1/metrowerks-tools.jam | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/metrowerks-tools.jam b/metrowerks-tools.jam index d389582f8..f184bfad1 100644 --- a/metrowerks-tools.jam +++ b/metrowerks-tools.jam @@ -96,7 +96,7 @@ actions metrowerks-Link-action { $(METROWERKS_SETUP) $(METROWERKS_LINK_SETUP)$(STDLIBS) - mwld -search -maxerrors 20 -maxwarnings 20 -export dllexport -nowraplines $(LINKFLAGS) -L$(LIBPATH) -L$(STDLIBPATH) $(IMPLIB_COMMAND)"$(<[2])" -o "$(<[1])" @"$(>)" $(FINDLIBS)$(SUFLIB) + mwld -search -maxerrors 5 -maxwarnings 20 -export dllexport -nowraplines $(LINKFLAGS) -L$(LIBPATH) -L$(STDLIBPATH) $(IMPLIB_COMMAND)"$(<[2])" -o "$(<[1])" @"$(>)" $(FINDLIBS)$(SUFLIB) } #### Cc ##### @@ -109,7 +109,7 @@ rule Cc-action actions metrowerks-Cc-action { $(METROWERKS_SETUP) - mwcc -maxerrors 20 -maxwarnings 20 -c -warn on,nounusedexpr,nounused -cwd include -U$(UNDEFS) -D$(DEFINES) -nowraplines $(CFLAGS) -I"$(HDRS)" -I- -I"$(STDHDRS)" -o "$(<)" "$(>)" + mwcc -maxerrors 5 -maxwarnings 20 -c -warn on,nounusedexpr,nounused -cwd include -U$(UNDEFS) -D$(DEFINES) -nowraplines $(CFLAGS) -I"$(HDRS)" -I- -I"$(STDHDRS)" -o "$(<)" "$(>)" } #### C++ #### @@ -121,7 +121,7 @@ rule C++-action actions metrowerks-C++-action { $(METROWERKS_SETUP) - mwcc -maxerrors 20 -maxwarnings 20 -c -warn on,nounusedexpr,nounused -cwd include -U$(UNDEFS) -D$(DEFINES) -DNOMINMAX -nowraplines -lang c++ $(CFLAGS) $(C++FLAGS) -I"$(HDRS)" -I- -I"$(STDHDRS)" -o "$(<)" "$(>)" + mwcc -maxerrors 5 -maxwarnings 20 -c -warn on,nounusedexpr,nounused -cwd include -U$(UNDEFS) -D$(DEFINES) -DNOMINMAX -nowraplines -lang c++ $(CFLAGS) $(C++FLAGS) -I"$(HDRS)" -I- -I"$(STDHDRS)" -o "$(<)" "$(>)" } #### Archive #### diff --git a/v1/metrowerks-tools.jam b/v1/metrowerks-tools.jam index d389582f8..f184bfad1 100644 --- a/v1/metrowerks-tools.jam +++ b/v1/metrowerks-tools.jam @@ -96,7 +96,7 @@ actions metrowerks-Link-action { $(METROWERKS_SETUP) $(METROWERKS_LINK_SETUP)$(STDLIBS) - mwld -search -maxerrors 20 -maxwarnings 20 -export dllexport -nowraplines $(LINKFLAGS) -L$(LIBPATH) -L$(STDLIBPATH) $(IMPLIB_COMMAND)"$(<[2])" -o "$(<[1])" @"$(>)" $(FINDLIBS)$(SUFLIB) + mwld -search -maxerrors 5 -maxwarnings 20 -export dllexport -nowraplines $(LINKFLAGS) -L$(LIBPATH) -L$(STDLIBPATH) $(IMPLIB_COMMAND)"$(<[2])" -o "$(<[1])" @"$(>)" $(FINDLIBS)$(SUFLIB) } #### Cc ##### @@ -109,7 +109,7 @@ rule Cc-action actions metrowerks-Cc-action { $(METROWERKS_SETUP) - mwcc -maxerrors 20 -maxwarnings 20 -c -warn on,nounusedexpr,nounused -cwd include -U$(UNDEFS) -D$(DEFINES) -nowraplines $(CFLAGS) -I"$(HDRS)" -I- -I"$(STDHDRS)" -o "$(<)" "$(>)" + mwcc -maxerrors 5 -maxwarnings 20 -c -warn on,nounusedexpr,nounused -cwd include -U$(UNDEFS) -D$(DEFINES) -nowraplines $(CFLAGS) -I"$(HDRS)" -I- -I"$(STDHDRS)" -o "$(<)" "$(>)" } #### C++ #### @@ -121,7 +121,7 @@ rule C++-action actions metrowerks-C++-action { $(METROWERKS_SETUP) - mwcc -maxerrors 20 -maxwarnings 20 -c -warn on,nounusedexpr,nounused -cwd include -U$(UNDEFS) -D$(DEFINES) -DNOMINMAX -nowraplines -lang c++ $(CFLAGS) $(C++FLAGS) -I"$(HDRS)" -I- -I"$(STDHDRS)" -o "$(<)" "$(>)" + mwcc -maxerrors 5 -maxwarnings 20 -c -warn on,nounusedexpr,nounused -cwd include -U$(UNDEFS) -D$(DEFINES) -DNOMINMAX -nowraplines -lang c++ $(CFLAGS) $(C++FLAGS) -I"$(HDRS)" -I- -I"$(STDHDRS)" -o "$(<)" "$(>)" } #### Archive ####