summaryrefslogtreecommitdiff
path: root/Makefile.config.example
AgeCommit message (Collapse)AuthorFilesLines
2015-09-17[build] include IO dependencies by defaultEvan Shelhamer1-4/+4
keep old behavior by including leveldb, lmdb, and opencv by default
2015-09-17Separate IO dependenciesTea1-0/+5
OpenCV, LMDB, LevelDB and Snappy are made optional via switches (USE_OPENCV, USE_LMDB, USE_LEVELDB) available for Make and CMake builds. Since Snappy is a LevelDB dependency, its use is determined by USE_LEVELDB. HDF5 is left bundled because it is used for serializing weights and solverstates.
2015-04-02Add commented out helpers for homebrew usersMartin Häcker1-0/+12
2015-02-16add WITH_PYTHON_LAYER build option to include Python layerJonathan L Long1-0/+3
Currently, this will only work when running from pycaffe (but not the tool binary), due to static linking conflicts with registration.
2015-01-21Back-merge fixes + docsEvan Shelhamer1-5/+4
and other fixes and documentation updates.
2014-12-28pretty the build with the Q variableJonathan L Long1-0/+3
Unset Q (in the environment) to see full commands, or edit in Makefile.config.
2014-12-05compile for compute capability 5.0Evan Shelhamer1-5/+4
2014-10-15Sometimes anaconda is installed in root.Craig Quiter1-4/+6
Helps fix #489.
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.