vervaekejonathan
vervaekejonathan
Hello, Using the cc build command in build.rs like this: ``` cc::Build::new() .compiler("g++-7") .cpp(true) .file("src/test.cpp") .include("...") .flag("-Llibrary_path") .flag("-llibrary") .compile("..."); ``` this translates to roughly: ``` g++-7 -fPIC -I ... -Llibrary_path...
Hello, I'm trying to bind c++ and rust, but I get the following error: ``` error: invalid conversion from 'std::__cxx11::string (*)() {aka std::__cxx11::basic_string (*)()}' to 'rust::cxxbridge1::String (*)()' ``` The Rust...
``` BETTER_ENUM(address_t, uint8_t, one = 0x01, two = 0x02); struct query_t { address_t address; } __attribute__((packed, aligned(1))); ``` Gives a warning: `ignoring packed attribute because of unpacked non-POD field 'address_t...
Hello, Have a simple better_enum: ``` BETTER_ENUM(state_t, uint8_t, off = 0, // on = 1 // ); ``` My compiler (arm-none-eabi-c++) gives a warning (using -std=gnu++14): ` Member '_value' was...
Hi! Is it possible to select the audio device (like in aplay -D HWCARD)? Thanks
Can you explain if goofys provides a significant performance update over using aws sync on a folder? For example, what happens if you copy a file onto the goofys? Does...
When running node-deb in bitbucket pipelines, it complains `dpkg-deb: error: control directory has bad permissions 777 (must be >=0755 and
I'm redirected to the Unauthorized page when the script tries to load "https://server_name/rest/api/2/serverInfo" I'm pretty confident my .jiracli.ini file is correctly set. Could this have to do with an requirement...
When I use: ` uint64_t nr = 123;` `printf("%llu", nr);` without the newlib-nano, it shows correctly `123` but when I enable newlib-nano, it shows `lu` Am I missing a linker/compiler...
Can't cross compile for target arm-linux-gnueabihf-gcc My .cargo/config file > [target.armv7-unknown-linux-gnueabihf] > linker = "arm-linux-gnueabihf-gcc" Create new rust project cargo new hello_world --bin Add depedency: > [dependencies] > web-view =...