gcc/libjava/gnu/classpath/Configuration.java.in

15 lines
470 B
Java
Raw Normal View History

// This file defines compile-time constants that can be accessed by java code.
// It is pre-processed by configure.
package gnu.classpath;
public interface Configuration
{
// The value of DEBUG is substituted according to whether the
// "--enable-libgcj-debug" argument was passed to configure. Code
// which is made conditional based on the value of this flag will
// be removed by the optimizer in a non-debug build.
boolean DEBUG = @LIBGCJDEBUG@;
}