Re: Failed 'dub run' with 'Failed to invoke the compiler dmd'

2015-10-31 Thread Mike Parker via Digitalmars-d-learn
On Saturday, 31 October 2015 at 05:33:08 UTC, Timoses wrote: On Saturday, 31 October 2015 at 04:00:18 UTC, Timoses wrote: Linking... ld: library not found for -levent clang: error: linker command failed with exit code 1 (use -v to see invocation) --- errorlevel 1 dmd failed with exit code 1.

Re: Failed 'dub run' with 'Failed to invoke the compiler dmd'

2015-10-31 Thread Timoses via Digitalmars-d-learn
On Saturday, 31 October 2015 at 06:13:27 UTC, Mike Parker wrote: DMD uses different linkers depending on the platform. For the compiler, -L means 'pass this command to the linker.' In this case, that just also happens to be -L, which is understood by ld (the system linker) as the flag to set

Re: Failed 'dub run' with 'Failed to invoke the compiler dmd'

2015-10-30 Thread Timoses via Digitalmars-d-learn
dub run -v Linking... dmd -of.dub/build/standalone-debug-posix.osx-x86_64-dmd_2068-4E2C9DFD17A7951AAA2F7856AB27FB45/vibelog .dub/build/standalone-debug-posix.osx-x86_64-dmd_2068-4E2C9DFD17A7951AAA2F7856AB27FB45/vibelog.o ../../.dub/packages/stringex-0.0.2/libstringex.a

Re: Failed 'dub run' with 'Failed to invoke the compiler dmd'

2015-10-30 Thread Timoses via Digitalmars-d-learn
On Saturday, 31 October 2015 at 03:38:57 UTC, Mike Parker wrote: How did you install DMD? I didn't : P. First hurdle taken. It now compiles. However, I get a linking error: Linking... ld: library not found for -levent clang: error: linker command failed with exit code 1 (use -v to see

Re: Failed 'dub run' with 'Failed to invoke the compiler dmd'

2015-10-30 Thread Timoses via Digitalmars-d-learn
On Saturday, 31 October 2015 at 04:00:18 UTC, Timoses wrote: Linking... ld: library not found for -levent clang: error: linker command failed with exit code 1 (use -v to see invocation) --- errorlevel 1 dmd failed with exit code 1. Seems to be fixed by editing dmd.conf (added

Re: Failed 'dub run' with 'Failed to invoke the compiler dmd'

2015-10-30 Thread Mike Parker via Digitalmars-d-learn
On Saturday, 31 October 2015 at 03:00:46 UTC, Timoses wrote: Hey, just getting started with D. I wanted to try out Vibelog. However, when trying to run dub run I receive the error: Failed to invoke the compiler dmd to determine the build platform: /bin/sh: dmd: command not found I'm on

Failed 'dub run' with 'Failed to invoke the compiler dmd'

2015-10-30 Thread Timoses via Digitalmars-d-learn
Hey, just getting started with D. I wanted to try out Vibelog. However, when trying to run dub run I receive the error: Failed to invoke the compiler dmd to determine the build platform: /bin/sh: dmd: command not found I'm on OSX - El Capitan and installed dub over Homebrew. Bests,