reformat and update README.md
authorJacob Lifshay <programmerjake@gmail.com>
Wed, 26 Jul 2017 12:20:30 +0000 (05:20 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Wed, 26 Jul 2017 12:20:30 +0000 (05:20 -0700)
README.md

index 1e4a75e2cb976c687e8f3ce1b0896a049175b84c..23db8a29758ebac5340868c870862d0cd9c76c38 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,14 +1,20 @@
-# Build under Ubuntu
-
-```sudo apt install software-properties-common wget
-wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
-sudo apt-add-repository 'deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-4.0 main'
-sudo apt update
-sudo apt install build-essential git clang-4.0 llvm-4.0-dev cmake zlib1g-dev
-git clone https://github.com/programmerjake/vulkan-cpu.git
-cd vulkan-cpu
-mkdir build
-cd build
-cmake .. -DCMAKE_CXX_COMPILER="`which clang++-4.0`" -DCMAKE_C_COMPILER="`which clang-4.0`" -DCMAKE_BUILD_TYPE=Debug
-make
-```
\ No newline at end of file
+# Vulkan-cpu
+
+Work-in-progress for Vulkan implementation on cpu
+
+## Build under Ubuntu 16.04 (xenial)
+
+    sudo apt install software-properties-common wget
+    wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
+    sudo apt-add-repository 'deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-4.0 main'
+    sudo apt update
+    sudo apt install build-essential git clang-4.0 llvm-4.0-dev cmake zlib1g-dev
+    git clone https://github.com/programmerjake/vulkan-cpu.git
+    cd vulkan-cpu
+    mkdir build
+    cd build
+    cmake .. -DCMAKE_CXX_COMPILER="`which clang++-4.0`" -DCMAKE_C_COMPILER="`which clang-4.0`" -DCMAKE_BUILD_TYPE=Debug
+    make
+
+Using the version of LLVM that comes with Ubuntu doesn't work.  
+See [Issue #1](https://github.com/programmerjake/vulkan-cpu/issues/1) for more details.