Jonas Krüger Svensson

Results 326 comments of Jonas Krüger Svensson

Hi! Thanks for letting me know – it's hard to keep up with Azure, they like breaking things. To answer specifically: - I don't know. - no, not in short...

I think there’s some confusion to _who_ the different primitives are intended for here. Fetching ticket information can be done with prompts, resources and tools. It’s not about _what_, it’s...

```toml # On MacOS, `brew install llvm` and fix .zshrc [target.x86_64-apple-darwin] rustflags = ["-C", "link-arg=-fuse-ld=lld"] [target.aarch64-apple-darwin] rustflags = ["-C", "link-arg=-fuse-ld=lld"] ``` This worked for me. `brew install llvm` + following...

Nvm, this did not work when running `test` etc. through Intellij (PyCharm) This did: ```toml # On MacOS, `brew install llvm` and fix .zshrc [target.x86_64-apple-darwin] rustflags = ["-C", "link-arg=-fuse-ld=/opt/homebrew/opt/llvm/bin/ld64.lld"] [target.aarch64-apple-darwin]...

M1, yeah. The setup you use works through terminal for me, but not through PyCharm. Under "[Using LLD](https://lld.llvm.org/MachO/index.html#using-lld )" pointing to `lld64.lld` seem to be the documented path as well:...

So this should solve it for both? 😊 ```toml # On MacOS, `brew install llvm` and follow steps in `brew info llvm` [target.x86_64-apple-darwin] rustflags = ["-C", "link-arg=-fuse-ld=lld"] [target.aarch64-apple-darwin] rustflags =...