Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8096505

[Build] bad warning checking CONF

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 8u40
    • 8u11
    • javafx

      See build.gradle line 717
      It is wrong:
      if (CONF != "Release" && CONF != "Debug") logger.warn("Unknown configuration CONF='$CONF'. Treating as 'Release'")

      it should be
      if (CONF != "Release" && CONF != "Debug" && CONF != "DebugNative") logger.warn("Unknown configuration CONF='$CONF'. Treating as 'Release'")

      Otherwise this warning happens (when -PCONF="DebugNative")

      Unknown configuration CONF='DebugNative'. Treating as 'Release'

            kcr Kevin Rushforth
            fheidric Felipe Heidrich (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: