I am posting here in case this will be useful to others and also to note the build issue on MacOS due to downstream dependencies that need to be updated.
I had trouble building on MacOS Sonoma 14.5 with error messages with respect to the xlsxwriter. I tried upgrading the xlsxwriter to version 0.6.0 as that version may fix the error according to the comments, but further fixes are required.
Error message:
--- stderr thread 'main' panicked at /Users/tim/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.49/src/fallback.rs:756:9: "lxw_tuple_struct_(unnamed_at__/third_party/libxlsxwriter/include/xlsxwriter/common_h_430_5)" is not a valid Ident
In order to successfully compile, downgrade the version of llvm from 15 to 14. Essentially:
brew install llvm@14
And then set the various path variables - displayed post install.
I am posting here in case this will be useful to others and also to note the build issue on MacOS due to downstream dependencies that need to be updated.
I had trouble building on MacOS Sonoma 14.5 with error messages with respect to the xlsxwriter. I tried upgrading the xlsxwriter to version 0.6.0 as that version may fix the error according to the comments, but further fixes are required.
Error message:
--- stderr thread 'main' panicked at /Users/tim/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.49/src/fallback.rs:756:9: "lxw_tuple_struct_(unnamed_at__/third_party/libxlsxwriter/include/xlsxwriter/common_h_430_5)" is not a valid Ident
In order to successfully compile, downgrade the version of llvm from 15 to 14. Essentially:
brew install llvm@14
And then set the various path variables - displayed post install.