-
Notifications
You must be signed in to change notification settings - Fork 22
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
[DRAFT] ICU build from sources #387
base: master
Are you sure you want to change the base?
[DRAFT] ICU build from sources #387
Conversation
…e-normalization # Conflicts: # src/charsmap_normalization.cpp # tests/layer_tests.py
Support UnicodeNormalization and CaseFold operations using new backend. Do not use FastTokenizer dependency during build.
@@ -314,7 +312,7 @@ jobs: | |||
# | |||
|
|||
- name: Install build dependencies | |||
run: brew install coreutils ninja | |||
run: brew install coreutils ninja icu4c |
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.
I suppose we need to drop icu4c
installation
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, add copyright header to this file
cmake/external/icu.cmake
Outdated
set(ICU_BUILD_TYPE ${CMAKE_BUILD_TYPE}) | ||
endif() | ||
|
||
if (CMAKE_BUILD_TYPE STREQUAL "Debug") |
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.
GENERATOR_IS_MULTI_CONFIG_VAR
should be handled here as well
cmake/external/icu.cmake
Outdated
|
||
set(HOST_ENV_CMAKE ${CMAKE_COMMAND} -E env | ||
CC=${CMAKE_C_COMPILER} | ||
CXX=${CMAKE_CXX_COMPILER} |
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.
current issue on macOS is because of we override compilers (tested locally)
maybe we can skip overriding it temporarily? because it's not often situation when compiler on macOS is other than default one.
No description provided.