Skip to content

Commit

Permalink
[GR-14635] Set Xmaxerrs to 10000 per default.
Browse files Browse the repository at this point in the history
PullRequest: mx/879
  • Loading branch information
djoooooe committed Mar 21, 2019
2 parents cb757a3 + 1465d3d commit 8898f08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mx.py
Original file line number Diff line number Diff line change
Expand Up @@ -3944,6 +3944,8 @@ def prepareJavacLike(self, project, javacArgs, disableApiRestrictions, warningsA
abort('Showing task tags is not currently supported for javac')
javacArgs.append('-encoding')
javacArgs.append('UTF-8')
javacArgs.append('-Xmaxerrs')
javacArgs.append('10000')

if jdk.javaCompliance >= '9':
jdk_modules_overridden_on_classpath = set() # pylint: disable=C0103
Expand Down Expand Up @@ -19136,7 +19138,7 @@ def alarm_handler(signum, frame):


# The comment after VersionSpec should be changed in a random manner for every bump to force merge conflicts!
version = VersionSpec("5.214.7") # [GR-14521] Fix optional libraries.
version = VersionSpec("5.214.8") # [GR-14635] Fix invisible DSL processor errors

currentUmask = None
_mx_start_datetime = datetime.utcnow()
Expand Down

0 comments on commit 8898f08

Please sign in to comment.