Am 29.06.2013 22:40, schrieb Joshua Niehus:

(...)

import std.stdio, std.process;
void main() {
    "hello".writeln;
    executeShell(`uname -a`);
}

running:

$vibe-test>dub --vverbose

produces the following error:

dmd -of/tmp/dub/1732927460/vibe-test /tmp/dub/1732927460/temp.o -L-levent -L-levent_pthreads -L-lssl -L-lcrypto -g 
Running /tmp/dub/1732927460/vibe-test...
hello
Error: Program exited with code -11
(...)


Have you tried running it separately (i.e. "dub build" + "./vibe-test")?
Maybe that gives a clue.

If it still crashes without an error message, running with GDB should
point to the source of error (if exit code -11 indicates a segmentation
fault here).

BTW, I tried the same program on 10.7.4 and it didn't crash.