Changes between Initial Version and Version 1 of Ticket #7779, comment 2
- Timestamp:
- 05/07/2016 11:21:54 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Ticket #7779, comment 2
initial v1 4 4 - That is not enough. During the build of '''jdk''', there is a make variable, which is passed for some compilations: 5 5 {{{ 6 SCTP_ ERROR := -Werror -Wno-error=unused-parameter6 SCTP_WERROR := -Werror -Wno-error=unused-parameter 7 7 }}} 8 and $(SCTP_ ERROR) is inserted after the extra-cflags, so the effect of ''-Wno-error'' is lost, and the build fails at this point.8 and $(SCTP_WERROR) is inserted after the extra-cflags, so the effect of ''-Wno-error'' is lost, and the build fails at this point. 9 9 10 10 There is a srpm in fedora rawhide (java-1.8.0-openjdk-1.8.0.91-3.b14.fc25.src.rpm), which has: … … 18 18 --with-extra-cflags="$EXTRA_CFLAGS" 19 19 [...] 20 make [...] SCTP_ ERROR=20 make [...] SCTP_WERROR= 21 21 }}} 22 22 With those instructions added to the book, the build goes to completion. I need to run the tests now.