GithubHelp home page GithubHelp logo

Issues with icu4c on Mac about peaclock HOT 5 OPEN

octobanana avatar octobanana commented on July 19, 2024 1
Issues with icu4c on Mac

from peaclock.

Comments (5)

poetaman avatar poetaman commented on July 19, 2024 3

This worked for me on M1 Mac (without having to edit CMakeLists.txt)

./RUNME.sh build -- -DCMAKE_CXX_COMPILER='/opt/homebrew/bin/g++-11' -DCMAKE_CXX_FLAGS='-I/opt/homebrew/opt/icu4c/include'

As @rumbletumjum mentioned, you need to run LC_ALL=C before running the binary or else you will get following error:
locale::facet::_S_create_c_locale name not valid.

from peaclock.

rumbletumjum avatar rumbletumjum commented on July 19, 2024 2

Try adding:

link_directories("/usr/local/opt/icu4c/lib")
include_directories("/usr/local/opt/icu4c/include")

to CMakeLists.txt after the cmake_minimum_required line. Make sure the paths match the values specified in the caveats of brew info icu4c and execute the build script as specified in the readme for macOS. The path might be different for an M1 Mac, so watch out for that.

Also, to dodge another Mac-specific problem, set the locale by exporting LC_ALL=C (or an appropriate value) before running.

from peaclock.

ChristophePRAT avatar ChristophePRAT commented on July 19, 2024

Are there any updates concerning this issue?

from peaclock.

limingjie avatar limingjie commented on July 19, 2024

Thank you @rumbletumjum and @poetaman! Here is what I did to make it work on Mac M1

  1. Install gcc and icu4c.
brew install gcc
brew install icu4c
  1. Add the following lines in CMakeLists.txt after the cmake_minimum_required line.
link_directories("/usr/local/opt/icu4c/lib")
include_directories("/usr/local/opt/icu4c/include")
  1. Build
./RUNME.sh build -- -DCMAKE_CXX_COMPILER='/opt/homebrew/Cellar/gcc/13.1.0/bin/g++-13'
  1. Install
./RUNME.sh install
  1. Run peaclock
LC_ALL=C peaclock

from peaclock.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.