-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cmake, xcode.mk): find optional dependency icu, while building xc…
…ode/release-with-icu target [skip appveyor] The homebrew version of boost(>=1.68) link to icu libraries by default Note: this will link against locally installed dylib and render the build non-portable
- Loading branch information
Showing
4 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,8 @@ brew link --force [email protected] | |
> Starting from version 1.68, homebrewed `boost` libraries depends on `icu4c`, | ||
> which is not provided by macOS. | ||
> | ||
> The [`with-icu` branch](https://github.com/rime/librime/tree/with-icu) adds | ||
> support for linking to ICU libraries but the built app cannot run on machines | ||
> without ICU libraries installed. | ||
> The make target `xcode/release-with-icu` tells cmake to link to ICU libraries | ||
> but the built app cannot run on machines without ICU libraries installed. | ||
> | ||
> To make the build portable, either install an earlier version of `boost` via | ||
> homebrew, or build from source with bootstrap option `--without-icu`. | ||
|
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
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