Can't build without cmake files
I tried to take this for a spin and got an error:
$ make
CC src/system.cmake: clang-3.8: No such file or directory
make: *** [src/system.o] Error 1
That's a lack of a carriage return. This project doesn't use cmake. However, I think it's requiring clang-3.8. How should I go about installing that?
Are you running on OS X? Just change from clang-3.8 in the makefile to clang.
You'll also need to change the @_silgen_name to @asmname in main.swift.
The Makefile assumes you built Swift from source and have the path to the bin/ directory from the Swift build in your $PATH. Building Swift from source should also get you a clang-3.8. Building from a binary distribution of Swift, such as the one that comes with XCode, is unsupported.