src/share/vm/utilities/elfFile.cpp

changeset 7857
8c3941f2020c
parent 6511
31e80afe3fed
child 7994
04ff2f6cd0eb
     1.1 --- a/src/share/vm/utilities/elfFile.cpp	Fri May 29 22:29:44 2015 +0900
     1.2 +++ b/src/share/vm/utilities/elfFile.cpp	Tue May 26 11:26:50 2015 -0700
     1.3 @@ -261,7 +261,12 @@
     1.4        }
     1.5      }
     1.6    }
     1.7 +// AARCH64 defaults to noexecstack. All others default to execstack.
     1.8 +#ifdef AARCH64
     1.9 +  return true;
    1.10 +#else
    1.11    return false;
    1.12 +#endif
    1.13  }
    1.14  #endif
    1.15  

mercurial