-
-
Notifications
You must be signed in to change notification settings - Fork 766
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
ICU-13138 WIN64: fix ICU data binary naming for builds with Static layout #5
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For builds using mingw-w64 with Static layout, missing 'lib' prefix in ICU Data binary name leads to Stubdata binary use during ICU extras, samples and tests build. ICU Stubdata binary also substitutes Data in installation directory. The above leads to runtime errors of ICU tools, tests and ICU-based software. Thus need to add 'lib' prefix to ICU Data binary name during Pkgdata run. Task-number: ICU-13138 Task-number: ICU-13187
For builds using mingw-w64 and MSVC with Static layout, ICU installation folder contains '.dll' file, which is a symbolic link to '.a' or '.lib' Data binary. This have no sense, since it can't be used as binary with shared layout. Task-number: ICU-13138
sav-ix
changed the title
mingw-w64: add lib prefix to Static Data binary name
WIN64: fix ICU data binary naming for builds with Static layout
Jul 5, 2018
srl295
changed the title
WIN64: fix ICU data binary naming for builds with Static layout
ICU-13138 WIN64: fix ICU data binary naming for builds with Static layout
Jul 18, 2018
srl295
requested changes
Jul 18, 2018
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.
please rebase on master. this will also cause automated builds to happen.
Closed in favor of PR #44. |
hugovdm
referenced
this pull request
in hugovdm/icu
Jan 17, 2020
CLDR-13488: Samples of intermediate source/data/misc/units.txt
hugovdm
referenced
this pull request
in hugovdm/icu
Mar 20, 2020
Hook up data-driven unit conversion tests
GerHobbelt
pushed a commit
to GerHobbelt/icu
that referenced
this pull request
Mar 11, 2024
config: support basic character conversions
FrankYFTang
added a commit
to FrankYFTang/icu
that referenced
this pull request
Sep 25, 2024
# This is the 1st commit message: ICU-22767 Fix GCC warning and turn warning to errors # This is the commit message #2: ICU-22716 use pre-existing task # This is the commit message #3: ICU-22716 Fix # This is the commit message #4: ICU-22716 Fix unitialization # This is the commit message unicode-org#5: Update icu4c/source/common/ushape.cpp Co-authored-by: Fredrik Roubert <fredrik@roubert.name> # This is the commit message unicode-org#6: ICU-22716 change macro # This is the commit message unicode-org#7: ICU-22716 Add document about the macro # This is the commit message unicode-org#8: ICU-22716 Addres review feedback
FrankYFTang
added a commit
to FrankYFTang/icu
that referenced
this pull request
Sep 25, 2024
# This is the 1st commit message: ICU-22767 Fix GCC warning and turn warning to errors # This is the commit message #2: ICU-22716 use pre-existing task # This is the commit message #3: ICU-22716 Fix # This is the commit message #4: ICU-22716 Fix unitialization # This is the commit message unicode-org#5: Update icu4c/source/common/ushape.cpp Co-authored-by: Fredrik Roubert <fredrik@roubert.name> # This is the commit message unicode-org#6: ICU-22716 change macro # This is the commit message unicode-org#7: ICU-22716 Add document about the macro # This is the commit message unicode-org#8: ICU-22716 Addres review feedback # This is the commit message unicode-org#9: ICU-22767 Fix GCC warning and turn warning to errors # This is the commit message unicode-org#10: ICU-22716 use pre-existing task # This is the commit message unicode-org#11: ICU-22716 Fix # This is the commit message unicode-org#12: ICU-22716 Fix unitialization # This is the commit message unicode-org#13: Update icu4c/source/common/ushape.cpp Co-authored-by: Fredrik Roubert <fredrik@roubert.name>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
ICU-13138