diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-03-07 03:15:55 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-07 03:15:55 -0800 |
commit | c85fa24f1697d5f53c4d5cff8954b10f1ca56543 (patch) | |
tree | 60da149876af8a9aa60b5616f2b0bfa5f294e223 | |
parent | b8212520849eb39c34108ef2197ccae993694f06 (diff) | |
parent | 839e97768a0429a94aa54c830445c4b2480c3187 (diff) |
Auto merge of #563 - ari7:master, r=emilio
fix clang installation instruction for debian os
Added clang-3.9 to debian install command. Without it, `cargo build` of [libbindgen-tutorial-bzip2-sys](https://github.com/fitzgen/libbindgen-tutorial-bzip2-sys) fails with:
```
/usr/include/stdio.h:33:11:` fatal error: 'stddef.h' file not found, err: true
```
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ $ port install clang-3.9 ##### Debian-based Linuxes ``` -# apt-get install llvm-3.9-dev libclang-3.9-dev +# apt-get install llvm-3.9-dev libclang-3.9-dev clang-3.9 ``` Ubuntu 16.10 provides the necessary packages directly. If you are using older |