From 0f81e8d30283bebd9a80e8b03b7500fff669149a Mon Sep 17 00:00:00 2001 From: JBoulder Date: Wed, 12 Nov 2014 09:54:22 -0700 Subject: [PATCH] Update installing.rst building llvmpy requires Python.h for python2.7. If python-dev is not installed here's the error. llvmpy/api.cpp:2:20: fatal error: Python.h: No such file or directory #include "Python.h" --- doc/manual/installing.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/manual/installing.rst b/doc/manual/installing.rst index 3620f3dcd..f76597352 100644 --- a/doc/manual/installing.rst +++ b/doc/manual/installing.rst @@ -143,6 +143,7 @@ Installing the host-side software $ cd ~/artiq-dev/llvmpy $ git checkout 7af2f7140391d4f708adf2721e84f23c1b89e97a $ cat /path_to/artiq/patches/llvmpy/* | patch -p1 + $ sudo apt-get install python-dev $ LLVM_CONFIG_PATH=/usr/local/llvm-or1k/bin/llvm-config sudo -E python setup.py install .. note::