Loading... (original) (raw)
From Fu Jie on build-dev ( http://mail.openjdk.java.net/pipermail/build-dev/2018-December/024550.html ):
---
Hi all,
OpenJDK build with NetBeans failed during the pre-build process.
---
and:
---
Further more, there are too many invalid items in
make/nb_native/nbproject/configurations.xml. For example
This item is invalid since advancedThresholdPolicy.cpp had been removed
from the project.
----------------------------------------------------------------------------
----------------------------------------------------------------------------
---
The reasons Fu Jie gave:
---
The setting that leads to the failure is:
sh ../configure --with-debug-level=slowdebug
--disable-zip-debug-info
Two pionts were wrong here:
- the path of configure script specified was incorrect which should
just be "sh configure" instead of "sh ../configure". - deprecated --disable-zip-debug-info was used which is now an
unrecognized option.
---
and:
---
To fix the issues, make/nb_native/nbproject/configurations.xml needs to
be updated.
---