Down for Maintenance from December 17, 2025 Wednesday 9:30pm PST to December 18, 2025 Thursday 3:30am PST (i.e., 05:30am -11:30am GMT, December 18, 2025 Thursday)
- Loading...
...
| Code Block |
|---|
cd bsd-port ; hg fpull -u |
Jeff Sinclair noted a specific error which occurs during HotSpot compilation because the gcc.make file has a flag to set WARNINGS as ERRORS. This can be fixed by commenting the line in the gcc.make file located in bsd-port/hotspot/make/bsd/makefiles/gcc.make
| Code Block |
|---|
# Compiler warnings are treated as errors
#WARNINGS_ARE_ERRORS = -Werror
|
I am not sure what can be done about this. My build.sh script has "ALT_FREETYPE_HEADERS_PATH=/opt/local/include/freetype2 ALT_FREETYPE_LIB_PATH=/opt/local/lib" and these seem to be where the headers and libraries are located....
...