Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-16Cleanup: stdbool no longer optional, remove checksCampbell Barton
2016-01-14CMake: Silence messages about unordered map and shared pointer on second runSergey Sharybin
This variables are being cached anyway and can only be changed on first run, no need to keep reporting them again and again.
2016-01-14CMake: Add additional search path for OpenSubdivSergey Sharybin
This patch will match where install_deps puts OpenSubdiv.
2016-01-14install_deps: Cleanup, delete trailing whitespaceSergey Sharybin
Based on patch D1644 by Jeffrey Hoover
2016-01-14Cycles: Add option to directly link against CUDA librariesSergey Sharybin
The main purpose of such linking is to make Blender compatible with NVidia's debuggers and profilers which are doing some LD_PRELOAD magic to intercept some function calls. Such magic conflicts with our CUDA wrangler magic and causes segmentation faults. The option is disabled by default, so there's no affect on any of artists. In order to make Blender linked directly against CUDA library use the WITH_CUDA_DYNLOAD CMake option (it's marked as advanced).
2016-01-11Bah, forgot to increase boost magic number...Bastien Montagne
2016-01-11install_deps: add wave to boost built modules, seems needed by OSL1.6.9...Bastien Montagne
2016-01-11install_deps: fix typo preventing installation of libsndfile on Fedora-like ↵Bastien Montagne
distro.
2016-01-08install_deps: bump OIIO and OSL to 1.6.9.Bastien Montagne
And we can even use vanilia version of OSL now! :D
2016-01-08install_deps: raise boost official version to 1.60.Bastien Montagne
2016-01-08install_deps: bump ffmpeg to 2.8.4.Bastien Montagne
2016-01-08Add new '--no-confirm' option to avoid user interaction (needs to run ths ↵Bastien Montagne
script as sudo then)
2016-01-08Remove raskter librarySergey Sharybin
it's no longer used by any of the parts of Blender.
2016-01-05Buildbot: Link libstdc++ staticallySergey Sharybin
2016-01-04Fix for previous commit...Bastien Montagne
Arg, forgot half of it, sorry for the noise. :|
2016-01-04Fix missing 'WITH_OPENCOLORIO/OPENIMAGEIO' defines in install_deps final ↵Bastien Montagne
message. Reported by venomgfx on IRC, thanks.
2016-01-04Next step of fix for gtests (but still not working...)Bastien Montagne
2016-01-04Move Libmv from extern/ to intern/Sergey Sharybin
Logically it is intern library since being mainly developed by 1.5 blender guys.
2016-01-04Re-organize structure of GLog/GFlags CMake librariesSergey Sharybin
The idea is to split them into two separate targets and have dedicated include directories list for each of them in order to avoid some annoying include header modifications in comparison with upstream. Reviewers: campbellbarton, juicyfruit Differential Revision: https://developer.blender.org/D1706
2016-01-04Remove outdated and unmaintained script which was supposed to configure a ↵Sergey Sharybin
release environment It was not updated in ages and in fact, it's easier to wrap release environment into Docker or VirtualBox image.
2016-01-04Remove SCons building systemSergey Sharybin
While SCons building system was serving us really good for ages it's no longer having much attention by the developers and started to become quite a difficult task to maintain. What's even worse -- there started to be quite serious divergence between SCons and CMake which was only accumulating over the releases now. The fact that none of the active developers are really using SCons and that our main studio is also using CMake spotting bugs in the SCons builds became quite a difficult task and we aren't always spotting them in time. Meanwhile CMake became really mature building system which is available on every platform we support and arguably it's also easier and more robust to use. This commit includes: - Removal of actual SCons building system - Removal of SCons git submodule - Removal of documentation which is stored in the sources and covers SCons - Tweaks to the buildbot master to stop using SCons submodule (this change requires deploying to the server) - Tweaks to the install dependencies script to skip installing or mentioning SCons building system - Tweaks to various helper scripts to avoid mention of SCons folders/files as well Reviewers: mont29, dingto, dfelinto, lukastoenne, lukasstockner97, brecht, Severin, merwin, aligorith, psy-fi, campbellbarton, juicyfruit Reviewed By: campbellbarton, juicyfruit Differential Revision: https://developer.blender.org/D1680
2015-12-27Fix for error w/ QtCreator project builderCampbell Barton
cmake_qtcreator_project.py now takes a '--build-dir' argument. Since introduction of argparse, accessing last argv from project_info is no longer working. Now require a call to project_info.init before use.
2015-12-26CMake: Disable some features when using MinGW and full cmake configSergey Sharybin
2015-12-26Support custom project namesJulian Eisel
2015-12-20Buildbot: Cleanup unused codeSergey Sharybin
- Remove deprecated/unused builders - Remove unused SCons OSX slave configuration - Remove SCons slave logic, it is not giving error about unknown building system used for the slave.
2015-12-20Buildbot: Make sure optiosn override are passed after the config fileSergey Sharybin
2015-12-20Buildbot: Disable CUDA binaries for 32bit OSX slaveSergey Sharybin
Funny thing, 32bit OSX slave was always building 64bit CUDA kernels and nobody never noticed this..
2015-12-20Buildbot: Update master config fileSergey Sharybin
2015-12-20Buildbot: Disable some unsupported features for 32bit OSX CMake slaveSergey Sharybin
2015-12-20Buildbot: Fix wrong architecture passed to CMakeSergey Sharybin
2015-12-20Buildbot: Use proper archive name for CMake OSX slaveSergey Sharybin
2015-12-20Buildbot: initial work to enable CMake OSX slaveSergey Sharybin
2015-12-11Fix T46949: Latest blender builds are using shared pcre and xml2 librariesSergey Sharybin
2015-12-10Eigen: fold remaining OpenNL code into intern/eigen.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D1662
2015-12-10Eigen: move C API into intern/eigen.Brecht Van Lommel
2015-12-09install_deps.sh: fix (hopefully) broken OSL building on modern RPM-like distro.Bastien Montagne
Those stupid ones only have one version of llvm (obviously not 3.4 one ;) ), so we have to build again LLVM3.4 in those cases. Thing is, * I did not update LLVM magic number when fixed a stupid typo breaking OSL building (the terminfo thing), so many people were still using previously-built LLVM. * Even worse, options passed to OSL to specify own LLVM from /opt/lib were wrong (not sure when this got out of sync...). Thanks to mib2berlin and slikdigit for the report & testings!
2015-12-09install_deps.sh: fix utmost stupid typo breaking 'skip-osl' option on ↵Bastien Montagne
RPM-based distro...
2015-12-09install_deps.sh: print correct set of sources tested when a wget fails...Bastien Montagne
2015-12-09install_deps.sh: raise default py version to 3.5.1 (due to some obscure bugs ↵Bastien Montagne
with OPM and 3.5.0).
2015-12-09install_deps.sh: add '-U' update commands to onle-liner CMake-based build ↵Bastien Montagne
command line. Avoid user to have to edit themselves their CMake config. Thanks a bunch @campbellbarton for the tip! :D
2015-12-06install_deps.sh: Fix typos in scons instructions.Bastien Montagne
Luckily we'll soon get rid of that insane dual build system maintenance... Anyway, thanks to Leo Koppel (lack) for the report and patch.
2015-12-04Use int division for version stringCampbell Barton
2015-12-03Buildbot: Remove windows + scons related codeSergey Sharybin
This is also has been moved to the CMake, no need to keep old dying code around.
2015-12-03Buildbot: Remove linux scons buildbot related thingsSergey Sharybin
It is now totally covered by cmake slave.
2015-12-03Buildbot: Re-enable CUDA binaries for 64 bit linux slaveSergey Sharybin
Also make it a bit more reasonable name for config files.
2015-12-03Buildbot: User proper folder name inside of the archiveSergey Sharybin
This is totally matching the way how buildbot was naming the directory. Currently there's a bit of code duplication, but it'll be eliminated once we'll get rid of SCons ;)
2015-12-03Buildbot: Remove debug-only early exitSergey Sharybin
2015-12-03Buildbot: Strip all .so files from python installSergey Sharybin
2015-12-03Buildbot: No need to build player with blender configSergey Sharybin
2015-12-03Buildbot: Followup to previous commitSergey Sharybin
Path is to be fully specified, so it's independent form the working directory.