Note the GCJ bug that this is a workaround for.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150542 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug Cutting 2004-09-29 16:29:48 +00:00
parent 370639d43e
commit 260dcbe4ef
1 changed files with 1 additions and 0 deletions

View File

@ -49,6 +49,7 @@ all: $(BUILD)/indexFiles $(BUILD)/searchFiles
# throw exceptions used in the Span and Sort code.) So we compile
# those that GCJ accepts from .java files, and those that GCJ does not
# yet accept from .class files.
# NOTE: Change when http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15501 is fixed.
$(CORE_OBJ) : $(CORE_JAVA)
gcj $(GCJFLAGS) -c -I $(CORE) -o $@ `find $(ROOT)/src/java -name '*.java' -not -name '*Sort*' -not -name 'Span*'` `find $(CORE) -name '*.class' -name '*Sort*' -or -name 'Span*'`