Good morning

This is my first time install nim on my windows 10 development laptop. I have 
copied the necessary dll's and also downloaded the mingw64 compiler.

Firstly, to make a simple program compile and run in windows 10 I had to 
include my gcc path manually here:

# Configuration for the GNU C/C++ compiler:

@if windows:
    gcc.path = r"C:mingwbin"

@if gcc or tcc:
    tlsEmulation:on

@end

@end

However, I cannot seem to run this command to build for macos: nim -d:release 
--os:macosx --cpu:amd64 c hello.nim

This is the error generated? what else must I change in the nim.cfg file? 
Error: invocation of external compiler program failed. The system cannot find 
the file specified. Additional info: "Requested command not found: 'clang.exe 
-c -w -O3

Reply via email to