# HG changeset patch # User adlertz # Date 1418309166 -3600 # Node ID e8634d0e6667b37c2b494373cd533c987ece722b # Parent 74f612049e4e783b312c144c3380a716c35cf7ff Added GeneratePIC flag diff -r 74f612049e4e -r e8634d0e6667 graal/com.oracle.graal.compiler.common/src/com/oracle/graal/compiler/common/GraalOptions.java --- a/graal/com.oracle.graal.compiler.common/src/com/oracle/graal/compiler/common/GraalOptions.java Wed Dec 10 09:45:20 2014 +0100 +++ b/graal/com.oracle.graal.compiler.common/src/com/oracle/graal/compiler/common/GraalOptions.java Thu Dec 11 15:46:06 2014 +0100 @@ -270,6 +270,9 @@ @Option(help = "Try to avoid emitting code where patching is required") public static final OptionValue ImmutableCode = new OptionValue<>(false); + @Option(help = "Generate position independent code") + public static final OptionValue GeneratePIC = new OptionValue<>(false); + @Option(help = "") public static final OptionValue CallArrayCopy = new OptionValue<>(true);