-
It looks from outside like it's pretty much as production ready as purescript itself is. What are the main purerl-specific rough edges right now? Is anyone using it in production?
-
cxx cannot currently cope with:
```rust
#[cxx::bridge]
mod ffi {
extern "C" {
fn HandleString(foo: CxxString) -> bool;
}
}
```
It says:
```
error[cxxbridge]: passing C++ …
-
Hi, I'm wondering if there's currently a supported way to dlopen dxcompiler on mac/linux without linking against the lib. There doesn't seem to be a way to grab the REFIID for types without having acc…
-
```rust
unsafe impl cxx::ExternType for bindgen::Bob {
type Id = cxx::type_id!("Bob");
}
mod bindgen {
#[repr(C)]
pub struct Bob {
…
-
## Latest news on native ARM compatibility
- **(2020-12-26) We currently have 3168 formulas bottled for Apple Silicon in homebrew-core. At this point, the table below is probably not really relevan…
claui updated
3 years ago
-
Currently, this library relies on the system linker to find the shared library at both compile and link time. While this is fine in many environments, for use cases where we cannot ask the use to manu…
-
> wrapper.h:1:10: fatal error: 'notcurses/notcurses.h' file not found
> wrapper.h:1:10: fatal error: 'notcurses/notcurses.h' file not found, err: true
> thread 'main' panicked at 'Unable to generate…
-
~~There should be an adblocker.~~
**edit: A host-based adblocker which is sufficient for most cases is implemented since a long time already, this issue is still open because it could be improved b…
-
The return type some methods involves:
```rust
pub struct MemoryBlock {
pub ptr: NonNull,
pub size: usize,
}
```
A pointer and a size, that sounds familiar.
Perhaps a dedicated s…
-
Hi and applause for your current up & running project!
I'm also very performance minded and would like to see it running on BSD Systems (especially FreeBSD).
Unfortunately I'm not much into C/C+…