Comment by bjt
11 years ago
My first question was "So how do I build "Hello World"?
For anyone else wondering that, go to https://github.com/dotnet/coreclr/blob/master/Documentation/....
11 years ago
My first question was "So how do I build "Hello World"?
For anyone else wondering that, go to https://github.com/dotnet/coreclr/blob/master/Documentation/....
1) ghuntley@freebsd-frankfurt:~/coreclr-master % ./build.sh
2) ghuntley@freebsd-frankfurt:~/coreclr-master % cp bin/Product/FreeBSD.x64.Debug/corerun ~/coreclr-demo/runtime
3) ghuntley@freebsd-frankfurt:~/coreclr-master % cp bin/Product/FreeBSD.x64.Debug/libcoreclr*.so ~/coreclr-demo/runtime
4) ghuntley@freebsd-frankfurt:~/coreclr-master % cd ~/coreclr-demo/runtime
5) ghuntley@freebsd-frankfurt:~/coreclr-demo/runtime % ./corerun HelloWorld.exe freebsd
Hello, FreeBSD...
See also https://github.com/dotnet/corefxlab/commit/a39310b028ad830f8... - "HelloWorld: Pimp up the FreeBSD daemon to have colors. Basically pay full respects to the original console screen-saver."
For those of you who want to save the click: you need to build half the stuff on a windows machine and the copy it over - and you need mono to fetch the dependencies(!).
For now? Yes but not for long - https://github.com/dotnet/corefx/issues/1576
Thanks for saving me the click.