Skip to content

Commit

Permalink
doc: clarify cpp tests build command
Browse files Browse the repository at this point in the history
Add a complete example how to biuld and run tests with a custom version
of libc++.
  • Loading branch information
tomaszkapela committed Mar 29, 2017
1 parent 08cd18e commit bbf379d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,12 @@ If you want to use a custom version of libc++ run:
```
Please remember to set the appropriate versions of *CC/CXX* when using custom versions of the library.

For example, when using a custom version of libc++(version 3.9) installed to /usr/local/libcxx, to execute the tests run:

```
$ CC=clang CXX=clang++ make USE_LLVM_LIBCPP=1 LIBCPP_INCDIR=/usr/local/libcxx/include/c++/v1 LIBCPP_LIBDIR=/usr/local/libcxx/lib check
```

#### Building NVML on Windows ####

Clone the NVML tree and open the solution:
Expand Down

0 comments on commit bbf379d

Please sign in to comment.