Andrew
Andrew
Hi, I am trying to use dprintf() and fileno() by including stdio.h and declaring the right feature gate macros. However, clang continues to complain about missing functions. Any tips?
The WASM installation instructions recommend using a prebuilt "emscripten" binary package such as from Ubuntu [18.10 Cosmic]. However, this package appears to be broken out of the box: ```console $...
In fact, the emsdk installation process depends on not just gcc, but also g++. Otherwise cmake complains `No CMAKE_CXX_COMPILER could be found.` While g++ includes gcc, the reverse is not...
Emacs offers standard variables for configuring indentation styles, such as `indent-tabs-mode` and `sws-tab-width`. When an Emacs user configures these globally, it is expected that the different programming modes respect these...
When I try to install dockerfile-mode via MELPA, I get this error: ```console (file-error "https://melpa.org/packages/dockerfile-mode-20160128.951.el" "Not found") signal(file-error ("https://melpa.org/packages/dockerfile-mode-20160128.951.el" "Not found")) ```
Hi, I appreciate the value of the cross-toolchains project. This really helps me develop more cross-platform apps! Can we please get targets for more of the BSD variants? For example,...
When I enable binary stripping in a Cargo.toml release profile, then the cross build emits a warning about how it doesn't know how to strip symbols. Presumably because the binary...
When I try to consume cross-toolchains images, then Docker often complains of missing images from the GHCR. ```console $ cat Cross.toml [target.aarch64-pc-windows-msvc] image = "ghcr.io/cross-rs/aarch64-pc-windows-msvc:local" $ cross build --target aarch64-pc-windows-msvc...
Some of the available target triples in `rustup target list` lack corresponding entries in cross-toolchains. Can we get more of these targets going for cross?
I'm trying to configure chronograf to point to influxdb via docker-compose, but when I open chronograf in my browser, it still prompts for influxdb connection details. Am I doing something...