diff options
author | Evan Shelhamer <shelhamer@imaginarynumber.net> | 2014-02-14 23:28:26 -0800 |
---|---|---|
committer | Evan Shelhamer <shelhamer@imaginarynumber.net> | 2014-02-14 23:28:26 -0800 |
commit | 55198262d79944fa7382868f7ecd108ed4f238a2 (patch) | |
tree | 9e5e444f9977123ed3249f47c35fabb715d8637d /Makefile.config.example | |
parent | 5aa2be80016c346fc08115eb22c6b702e2ff5492 (diff) | |
download | caffeonacl-55198262d79944fa7382868f7ecd108ed4f238a2.tar.gz caffeonacl-55198262d79944fa7382868f7ecd108ed4f238a2.tar.bz2 caffeonacl-55198262d79944fa7382868f7ecd108ed4f238a2.zip |
define by := (no need for re-expansion)
Diffstat (limited to 'Makefile.config.example')
-rw-r--r-- | Makefile.config.example | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.config.example b/Makefile.config.example index fe117b79..b70ccf2a 100644 --- a/Makefile.config.example +++ b/Makefile.config.example @@ -26,9 +26,9 @@ INCLUDE_DIRS := $(PYTHON_INCLUDES) /usr/local/include LIBRARY_DIRS := $(PYTHON_LIB) /usr/lib /usr/local/lib # For OS X, use clang++. -CXX=/usr/bin/g++ +CXX := /usr/bin/g++ # For OS X 10.9, use libstdc++ instead of libc++ for CUDA compatibility. -#CXXFLAGS=-stdlib=libstdc++ +#CXXFLAGS := -stdlib=libstdc++ -BUILD_DIR=build -DISTRIBUTE_DIR=distribute +BUILD_DIR := build +DISTRIBUTE_DIR := distribute |