Makefile.config

来源:互联网 发布:adobe cc2017 mac破解 编辑:程序博客网 时间:2024/06/01 08:50

修改:

1.

# cuDNN acceleration switch (uncomment to build with cuDNN).

USE_CUDNN := 1


2

# Uncomment if you're using OpenCV 3
 OPENCV_VERSION := 3


3.

# NOTE: this is required only if you will compile the python interface.
# We need to be able to find Python.h and numpy/arrayobject.h.
#PYTHON_INCLUDE := /usr/include/python2.7 \
        #/usr/lib/python2.7/dist-packages/numpy/core/include
# Anaconda Python distribution is quite popular. Include path:
# Verify anaconda location, sometimes it's in root.
 ANACONDA_HOME := $(HOME)/liesmars/Softwares/anaconda2
 PYTHON_INCLUDE := $(ANACONDA_HOME)/include \
         $(ANACONDA_HOME)/include/python2.7 \
         $(ANACONDA_HOME)/lib/python2.7/site-packages/numpy/core/include \


4.

# We need to be able to find libpythonX.X.so or .dylib.
# PYTHON_LIB := /usr/lib
 PYTHON_LIB := $(ANACONDA_HOME)/lib


5.

# Uncomment to support layers written in Python (will link against Python libs)
 WITH_PYTHON_LAYER := 1


6.

# Whatever else you find you need goes here.
#INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include
#LIBRARY_DIRS := $(PYTHON_LIB) /usr/local/lib /usr/lib

INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include /usr/include/hdf5/serial
LIBRARY_DIRS := $(PYTHON_LIB) /usr/local/lib /usr/lib /usr/lib/x86_64-Linux-gnu /usr/lib/x86_64-linux-gnu/hdf5/serial


0 0
原创粉丝点击