Hi, With recent git "ltp-43b57db.tar.gz", configuration failed: ------------ [...] checking for gcj... no checking for guavac... no checking for jikes... no checking for javac... no configure: error: no acceptable Java compiler found in $PATH ------------
Java compiler isn't installed in my systems. >From yesterday, Java compiler has been necessary. The Java compiler is necessary for a compilation of "DOTS", I think. In the recent revision of "testcases/Makefile", if java compiler isn't found, "DOTS" will be worn a filter: ------------ --- a/testcases/Makefile +++ b/testcases/Makefile @@ -38,7 +38,12 @@ FILTER_OUT_DIRS := ballista kdump mce-test open% pounder21 # XXX (garrcoop): kdump was in this list. # XXX (garrcoop): open_hpi_testsuite was in this list. ifeq ($(UCLINUX),1) -FILTER_OUT_DIRS += DOTS realtime +FILTER_OUT_DIRS += realtime+endif + +# DOTS requires javac +ifeq ($(strip $(JAVAC)),) +FILTER_OUT_DIRS += DOTS endif ------------ But, the configuration fails by the lack of the Java compiler earlier than the making. Regards-- -Tomonori Mitani ------------------------------------------------------------------------------ Nokia and AT&T present the 2010 Calling All Innovators-North America contest Create new apps & games for the Nokia N8 for consumers in U.S. and Canada $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store http://p.sf.net/sfu/nokia-dev2dev _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
