Torfinn Berset
Torfinn Berset
On my board, the unlock operation takes a 'significant' time to complete, so I added the timer to measure.
The main reason I'm using the library is to quickly find the serial port address of a device. But I had some devices that had the same vendorId/productId, but differed...
@DavidEGrayson you have a good point about the extra overhead per device. You should only pay for what you use :) However, it should be noted that the current `master`...
@wolfv Hmm, it seems it that changing from `std::unordered_map` to `std::map` does indeed change the order of the `--explicit` exports. Perhaps that's a symptom that the `std::vector PrefixData::sorted_records() const` method...
Is there any way we can verify that the dependencies are topologically sorted? Perhaps a way to visualize the dependencies? In my opinion it would also be nice if the...
What I did for now was to create a large environment by combining some environment.yaml files I found on github, then installing it, then exporting it in topological order: Generated...
As a side note, I see that after nuking my ~/micromamba directory, all packages are listed with a size of 0B during the following installation command. This is not related...
Just adding that I'm on macOS 12.6 on an Intel MacBook, and I have the same error with `CppyyLegacy` , so it seems not limited to M1 silicon.
I added this to the CMakeLists.txt, and now it's at least linking: ``` link_directories(/micromamba/envs/cppyy/lib/python3.10/site-packages) link_libraries(CoreLegacy) ```
I have the same issue as OP, with clang (not apple-clang) 14.0.4, macOS 12.6, x86_64, ASAN & UBSAN enabled: ``` Current executable set to '/.../test' (x86_64). (lldb) run Process 13948...