mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
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:
parent
5ec4157361
commit
d4928c5577
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user