Results 217 comments of Max Desiatov

Hi @ldbing, would you be able to provide a sample file to help me reproduce the issue? Unfortunately, I won't be able to proceed without more details. Thanks.

Hi @pankajsoni19, thanks for bringing this up. Unfortunately, there's no such roadmap. Any pull requests adding such support would be appreciated, but after a cursory look [at the spec](https://interoperability.blob.core.windows.net/files/MS-XLSB/%5bMS-XLSB%5d.pdf) of...

I've found [yet another implementation](https://github.com/tokgolich/doctotext/blob/master/src/xlsb_parser.cpp), doesn't look that scary actually in terms of complexity, leaving the link here for posterity

And [another one in Python](https://github.com/wwwiiilll/pyxlsb)...

Thank you @maxvol! I understand that writing an edited XLSX file is a priority and I'd be happy to merge PRs with good test coverage implementing this. In the meantime,...

I'm getting a similar error with LLVMSwift 0.8 when building with Xcode: ``` 'llvm-c/Analysis.h' file not found ``` I have LLVM 11 installed with homebrew, and pkg-config script did succeed.

I do have `export PATH="/opt/homebrew/opt/llvm@11/bin:$PATH"` in my `.zshrc`, but that doesn't seem to have any effect on Xcode. Is there anything else that needs to be done to make Xcode...

Somehow rerunning `swift utils/make-pkgconfig.swift` did help in my case after all.

Also check that you don't have two version of LLVM installed at the same time, I guess some of my issues could've been cause by having `llvm@12` and `llvm@13` installed...

`master` branch and 0.8.0 release need LLVM 11, while https://github.com/llvm-swift/LLVMSwift/pull/238 somewhat works with LLVM 13, but with disabled JIT.