dlang-tour / core

D Language online tour (https://tour.dlang.org/) and online editor (https://run.dlang.io/)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Just importing vibe and compiling fails

aliak00 opened this issue · comments

Run.d file

/+dub.sdl:
dependency "vibe-d" version="~>0.8.5"
+/
import std;

void main() {
	writeln("Hello world");
}

Output in error pane:

Error: module `eval.4B72E86E4C432848EA270813089D21F5` is in file '/tmp/.rdmd-1000/eval.4B72E86E4C432848EA270813089D21F5.d' which cannot be read
import path[0] = /tmp/.rdmd-1000
import path[1] = /dlang/dmd-2.086.0/linux/bin64/../../src/phobos
import path[2] = /dlang/dmd-2.086.0/linux/bin64/../../src/druntime/import
Failed: ["/dlang/dmd-2.086.0/linux/bin64/dmd", "-d", "-v", "-o-", "/tmp/.rdmd-1000/eval.4B72E86E4C432848EA270813089D21F5.d", "-I/tmp/.rdmd-1000"]
Hello world