Changes between Initial Version and Version 1 of Ticket #63694, comment 36


Ignore:
Timestamp:
Dec 7, 2021, 4:04:41 PM (3 years ago)
Author:
jmesmon (Cody Schafer)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #63694, comment 36

    initial v1  
    33I added `configure.sdk_version 12.0` to my Portfile to workaround the issue, but the right choice here is likely filtering out broken sdk versions. Something like this maybe:
    44
    5 ```
    6         if {[vercmp ${configure.sdk_version} 11.3] == 0} {
    7             configure.sdk_version 12.0
    8         }
    9 ```
     5{{{
     6    if {[vercmp ${configure.sdk_version} 11.3] == 0} {
     7       configure.sdk_version 12.0
     8    }
     9}}}