summaryrefslogtreecommitdiff
path: root/Makefile.config.example
AgeCommit message (Collapse)AuthorFilesLines
2014-10-14Reintroduce pkg-config with optional Makefile.config flag.Jeff Donahue1-0/+4
2014-09-07add cuDNN to buildEvan Shelhamer1-0/+3
2014-07-18use /usr instead of /usr/local for default Python include/libJonathan L Long1-3/+3
This makes the default settings usable with Travis/Ubuntu Python
2014-07-17configure Makefile for CPU-only buildEvan Shelhamer1-0/+3
2014-07-14Replace CUSTOM_CXX env var to specify non-default C++ compiler.Jeff Donahue1-1/+1
2014-07-14-Override the default compiler by specifying a CXX inJeff Donahue1-1/+1
Makefile.config instead of CUSTOM_CXX, as Travis exports CXX as the compiler env variable name. -Change TEST_HDFS -> TEST_HXX_SRCS.
2014-07-03customize compiler setting in Makefile.configEvan Shelhamer1-0/+4
in case of issues with default compilers or exotic platforms.
2014-06-30Update Makefile.config.exampleyzhuan1-3/+3
fix some typing error
2014-06-27Merge pull request #510 from crizCraig/patch-1Evan Shelhamer1-1/+1
Add comment to Makefile.config.example about DEBUG flag issue in OSX
2014-06-27add latest CUDA arch to fix invalid device function errorsEvan Shelhamer1-1/+5
...on devices of that architecture.
2014-06-17Add comment to Makefile.config.example about DEBUG flag issue in OSX per #171.Craig Quiter1-1/+1
2014-06-15Add comment for how to set the CUDA path when cuda tools are installed by ↵leelurch1-0/+3
the package manager.
2014-04-20installation doc updateSergey Karayev1-2/+2
2014-04-15Give choice of ATLAS, MKL, and OpenBLAS (with option to override paths)Evan Shelhamer1-7/+10
- configure build for ATLAS, MKL, or OpenBLAS on Linux and OSX - allow overriding of the include or lib dirs - replace magic numbers with BLAS names (atlas, mkl, open) Follow-up from #305 and #325.
2014-04-15rename python include config var to match libEvan Shelhamer1-3/+3
2014-04-14Add possibility to use OpenBlasAlOa1-4/+5
2014-04-08Merge pull request #305 from shelhamer/install-doc-blas-platformJeff Donahue1-15/+11
Document BLAS install, tailor Makefile and Makefile.config to platform
2014-04-08Comment out MATLAB by default in Makefile.configEvan Shelhamer1-1/+1
Otherwise the Makefile tries to determine the MATLAB SO extension even if MATLAB doesn't exist, breaking `make`.
2014-04-08auto-configure linux/osx build differencesEvan Shelhamer1-10/+6
- set cxx as needed (clang++ on os x) - set stdlib flag for os x 10.9 (CUDA libc++ workaround) - link ATLAS properly for non-MKL installation whether linux or os x
2014-04-08trivial makefile groomingEvan Shelhamer1-5/+5
2014-04-02put TEST_GPUID in Makefile.configJeff Donahue1-0/+3
2014-03-27add DEBUG option to Makefile/Makefile.config.exampleJonathan L Long1-0/+3
This allows debugging to be toggled without dirtying the tree.
2014-03-21make MKL switch surprise-proofEvan Shelhamer1-2/+2
2014-03-21rewrite MKL flag note, polish makefileEvan Shelhamer1-2/+2
add MKL dirs conditioned on USE_MKL include libraries before making LD_FLAGS
2014-03-21major refactoring allow coexistence of MKL and non-MKL casesRowland Depp1-0/+2
2014-02-25More comments in Makefile.config.exampleSergey Karayev1-8/+19
2014-02-14define by := (no need for re-expansion)Evan Shelhamer1-4/+4
2014-02-11add CXXFLAGS for libstdc++ on OS X 10.9Evan Shelhamer1-0/+2
2014-02-03Makefile.config removed in favor of .example fileSergey Karayev1-0/+32
with more verbose explanations of paths.