Update to freebsd-instructions.md
authorAaron Havens <arnmac@users.noreply.github.com>
Thu, 25 Feb 2016 03:34:49 +0000 (21:34 -0600)
committerAaron Havens <arnmac@users.noreply.github.com>
Thu, 25 Feb 2016 03:34:49 +0000 (21:34 -0600)
Added note specifically calling out the need to add the clang version to the build command.

Documentation/building/freebsd-instructions.md

index 11d890de2c3df29b38365066960e399cb4fd0a7f..17a34842f536b5e697d93523bd256d2fec37f436 100644 (file)
@@ -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
+```