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

Fix for 8046471 breaks PPC64 build

XMLWordPrintable

    • b24
    • ppc
    • generic

        The fix for "8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH" breaks the PPC64 build. The following small patch fixes it again:

        diff -r 116e9b1bf477 make/linux/Makefile
        --- a/make/linux/Makefile Mon Jun 23 17:43:30 2014 +0200
        +++ b/make/linux/Makefile Mon Jun 23 18:15:20 2014 +0200
        @@ -67,8 +67,10 @@
           endif
         endif
         # C1 is not ported on ppc64, so we cannot build a tiered VM:
        -ifeq ($(ARCH),ppc64)
        - FORCE_TIERED=0
        +ifeq ($(ARCH),ppc)
        + ifeq ($(ARCH_DATA_MODEL), 64)
        + FORCE_TIERED=0
        + endif
         endif

         ifdef LP64

              simonis Volker Simonis
              simonis Volker Simonis
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: