зеркало из https://github.com/mozilla/pjs.git
Set the default build to debug (javac -g) so we can do a better job of quality control;
Set max stack size to 64MB during compile phase - we have enough classes now that the compiler runs out of memory occasionally without the -mx64m flag.
This commit is contained in:
Родитель
01cbb30f00
Коммит
ae79581355
|
@ -42,7 +42,7 @@ OBJS = $(subst .java,.class,$(SRCS))
|
|||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -g $*.java
|
||||
$(JAVAC) -J-mx64m -classpath $(MOZILLA_BUILD):$(GRENDEL_BUILD) -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
|
@ -63,5 +63,5 @@ all clean distclean::
|
|||
done
|
||||
|
||||
run::
|
||||
java grendel.Main
|
||||
java -cp $(MOZILLA_BUILD):$(GRENDEL_BUILD) grendel.Main
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче