Changes between Initial Version and Version 1 of Ticket #7779, comment 2


Ignore:
Timestamp:
05/07/2016 11:21:54 AM (9 years ago)
Author:
Pierre Labastie

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified Ticket #7779, comment 2

    initial v1  
    44- That is not enough. During the build of '''jdk''', there is a make variable, which is passed for some compilations:
    55{{{
    6 SCTP_ERROR := -Werror -Wno-error=unused-parameter
     6SCTP_WERROR := -Werror -Wno-error=unused-parameter
    77}}}
    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.
     8and $(SCTP_WERROR) is inserted after the extra-cflags, so the effect of ''-Wno-error'' is lost, and the build fails at this point.
    99
    1010There is a srpm in fedora rawhide (java-1.8.0-openjdk-1.8.0.91-3.b14.fc25.src.rpm), which has:
     
    1818   --with-extra-cflags="$EXTRA_CFLAGS"
    1919[...]
    20 make [...] SCTP_ERROR=
     20make [...] SCTP_WERROR=
    2121}}}
    2222With those instructions added to the book, the build goes to completion. I need to run the tests now.