Changes between Initial Version and Version 1 of Ticket #64577, comment 9


Ignore:
Timestamp:
Feb 2, 2022, 9:33:59 PM (2 years ago)
Author:
barracuda156
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #64577, comment 9

    initial v1  
    55
    66
    7 I have (I remembered what you told me), and I also changed setting in compilers-1.0.tcl to:
     7I have (I remembered what you told me):
     8
     9{{{
     10# Pick the gcc version that provides the primary runtime.
     11# NOTE : The logic here must match that in the gccX ports *and*
     12# that in _resources/port1.0/group/compilers-1.0.tcl
     13if { ${os.major} < 11 } {
     14    set gcc_version 10
     15} else {
     16    set gcc_version 11
     17}
     18depends_lib port:libgcc${gcc_version}
     19}}}
     20
     21And I also changed setting in compilers-1.0.tcl to:
    822
    923{{{
     
    1731}}}
    1832
    19 Then I uninstalled `libgcc` and installed again. This however did not help.
     33Then I uninstalled `libgcc` and installed again. This however did not help. (I set os.major to 11 in order to borrow the setting into 10.6 PPC; however discussed build is done in 10.5.8.)