From: Aaron Havens Date: Thu, 25 Feb 2016 03:34:49 +0000 (-0600) Subject: Update to freebsd-instructions.md X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6cdf20d6b2e781f16dc56c573d607fab6fa6ad4e;p=platform%2Fupstream%2Fcoreclr.git Update to freebsd-instructions.md Added note specifically calling out the need to add the clang version to the build command. --- diff --git a/Documentation/building/freebsd-instructions.md b/Documentation/building/freebsd-instructions.md index 11d890de2c..17a34842f5 100644 --- a/Documentation/building/freebsd-instructions.md +++ b/Documentation/building/freebsd-instructions.md @@ -265,3 +265,10 @@ To install clang development snapshot: `sudo pkg install llvm-devel` clang35 and clang36 download llvm35 and llvm36 packages as a dependency. llvm37 and llvm-devel include clang and lldb. Since clang is included with llvm 3.7 and onward, there is no clang37 package. + +After you have installed your desired version of LLVM you will need to specify the version to the build.sh script. + +For eaxample if you chose to install llvm37 you would add the clangX.X to your build command as follows. +```sh +janhenke@freebsd-frankfurt:~/git/coreclr % ./build.sh clang3.7 +```