< prev index next >

src/hotspot/share/cds/cdsConfig.cpp

Print this page
*** 150,14 ***
      }
  #ifdef _LP64
      if (!UseCompressedOops) {
        tmp.print_raw("_nocoops");
      }
!     if (!UseCompactObjectHeaders) {
!       // Note that generation of xxx_nocoh.jsa variants require
!       // --enable-cds-archive-nocoh at build time
!       tmp.print_raw("_nocoh");
      }
  #endif
      tmp.print_raw(".jsa");
      _default_archive_path = os::strdup(tmp.base());
    }
--- 150,14 ---
      }
  #ifdef _LP64
      if (!UseCompressedOops) {
        tmp.print_raw("_nocoops");
      }
!     if (UseCompactObjectHeaders) {
!       // Note that generation of xxx_coh.jsa variants require
!       // --enable-cds-archive-coh at build time
!       tmp.print_raw("_coh");
      }
  #endif
      tmp.print_raw(".jsa");
      _default_archive_path = os::strdup(tmp.base());
    }
< prev index next >