Timothee Cour
Timothee Cour
workaround: see https://github.com/Syniurge/Calypso/issues/60#issuecomment-358059644
As of 3ec67bcb465c87a83c3e4a8cffd6846630a2a678 the DDMD jump was done
@Syniurge @Nekroze which flag should I pass in D_FLAGS ? (I'm on OSX) I tried: -cpp-args=-I/Users/timothee/homebrew/Cellar/gcc/7.1.0/include/c++/7.1.0/x86_64-apple-darwin16.7.0/ also tried /Users/timothee/homebrew/Cellar/[email protected]/3.9.1_1/include/c++/v1/ and /Users/timothee/homebrew/Cellar/gcc/7.1.0/include/c++/7.1.0/ but it always seem to be complaining about a...
your link shows: ''-DD_CFLAGS="-cpp-args -I${stdenv.cc.cc}/include"'' I'm not using nix ; how would that translate on OSX ? how would i truncate any of these? /Users/timothee/homebrew/Cellar/gcc/7.1.0/include/c++/7.1.0/x86_64-apple-darwin16.7.0/ /Users/timothee/homebrew/Cellar/[email protected]/3.9.1_1/include/c++/v1/ /Users/timothee/homebrew/Cellar/gcc/7.1.0/include/c++/7.1.0/ likewise on ubuntu?...
using ccmake ..: D_FLAGS -cpp-args=-I/Users/timothee/homebrew/Cellar/llvm/3.9.1/include gives: fatal error: 'typeinfo' file not found NOTE: typeinfo is under: /Users/timothee/homebrew/Cellar/llvm/3.9.1/include/c++/v1/typeinfo EDIT: if I have: `-cpp-args=-I/Users/timothee/usr/local/bin/../lib/clang/3.9.0/include` I get: `missing typeinfo` If i I have...
@Syniurge this worked (in the sense that make succeeds, but facing other issues, cf other https://github.com/Syniurge/Calypso/issues/60): ``` ccmake -D LLVM_CONFIG=$homebrew_D/Cellar/[email protected]/3.9.1_1/bin/llvm-config -D D_FLAGS="-cpp-args=-I/Users/timothee/homebrew//Cellar/gcc/7.2.0/include/c++/7.2.0;-cpp-args=-I/Users/timothee/homebrew//Cellar/gcc/7.2.0//include/c++/7.2.0/x86_64-apple-darwin17.2.0" .. ``` the key was to use `;`...
the culprit might be at that line: https://github.com/yaml/pyyaml/blob/48838a3c768e3d1bcab44197d800145cfd0719d6/lib/yaml/emitter.py#L452 (although it shows 128, not 122) to test: ```py import yaml doc={"a"*122: 1, "b"*123: 1} # 1st key is ok, 2nd is...
EDIT: my setup was a bit more complex and i needed a `--jumphost host_aux`, and what i had tried was: from macos: ``` ssh host_aux then this failed: et myhost...
I don't understand. Why not use regex or even exact search? eg: dub search --regex '^msgp.*' => should match msgpack-d,msgpack-rpc dub search 'sgpack-d' => should match msgpack-d (eg using std.algorithm.canFind)