-
Notifications
You must be signed in to change notification settings - Fork 806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to newer ICU binaries (5.7) #668
Conversation
@@ -152,7 +152,7 @@ | |||
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |||
<GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |||
<ModuleDefinitionFile>CoreFoundation.def</ModuleDefinitionFile> | |||
<AdditionalDependencies>mincore.lib;libxml2.lib;icudt.lib;icuin.lib;icuuc.lib;libdispatch.lib;icudata.lib;%(AdditionalDependencies)</AdditionalDependencies> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
icudata.lib [](start = 100, length = 11)
hooray!! Any numbers on the reduced dll size? #Resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Net increase in size, probably because more complete data set now?
In reply to: 71421348 [](ancestors = 71421348,71421042,71389811)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I think that'd be the case. Also reminder to everyone that eventually we'll consume this directly from windows, meaning we'll no longer take the hit.
In reply to: 71459710 [](ancestors = 71459710,71421348,71421042,71389811)
Does this also add the new 5.7 headers? #Resolved |
(or, "should") In reply to: 233714431 [](ancestors = 233714431) |
@@ -786,7 +786,7 @@ void CFNumberFormatterSetProperty(CFNumberFormatterRef formatter, CFStringRef ke | |||
#if U_ICU_VERSION_MAJOR_NUM >= 55 | |||
__CFGenericValidateType(value, CFNumberGetTypeID()); | |||
CFNumberGetValue((CFNumberRef)value, kCFNumberSInt32Type, &n); | |||
__cficu_unum_setContext(formatter->_nf, n, &status); | |||
__cficu_unum_setContext(formatter->_nf, (UDisplayContext)n, &status); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
UDisplayContext [](start = 49, length = 15)
static cast? // WINOBJC comment? #Pending
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's not static cast, this is a C file and upstreamable.
In reply to: 71390074 [](ancestors = 71390074)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// WINOBJC: WinObjC seems to have stricter type-checking than the reference platform,
// so an explicit cast is required here
In reply to: 71390930 [](ancestors = 71390930,71390074)
I don't see the new binaries in the commit here. What is the deal? Is that a git-lfs artifact or did they not get added accidentally? #ByDesign |
🕐 |
It does In reply to: 233714467 [](ancestors = 233714467,233714431) |
I'm guessing it's because of "Sorry, we could not display the entire diff because too many files (8,133) changed." In reply to: 233715196 [](ancestors = 233715196) |
1 similar comment
ucal_getDayOfWeekType now returns UCAL_WEEKDAY/WEEKEND instead of UCAL_WEEKEND_START, UCAL_WEEKEND_CEASE. Added fallback cases to populate onset and cease even with the new behavior.
Fixes #667