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
2014-06-20Fix scons building in case git is not available.Bastien Montagne
Not so nice to use try/except here, but simplest solution to avoid failing in case git commands fail for some reason...
2014-06-19Python: Remove deprecated uses of os.popenCampbell Barton
T40415 by Lawrence D'Oliveiro
2014-06-19Add a bmesh_core_test, a start at testing bmesh functionality.Howard Trickey
Needed to make the blender link libraries a global property now that tests are parallel to source directory. Current sort order for blender link libraries doesn't work for tests that start with few defined symbols. Doubling the lib list works, but a TODO to find a better way (probably using CMake's own mechanism for tracking dependencies).
2014-06-18Some WITH_TESTS weer not renamed to WITH_GTESTSergey Sharybin
2014-06-18GTest unit testing frameworkSergey Sharybin
Currently covers only small set of functionality.
2014-06-18Disable cubins for OSX buildbotSergey Sharybin
This is a temporary solution in order to get at least rest of the blender begin up-to-date on the buildbot. To be able to compile cubins again we need to switch OSX builder machine to OSX 10.8 and CUDA toolkit 6, which might take some time, unfortunately.
2014-06-16Need to consider blender-v* a release branch, not just blender-Sergey Sharybin
This is because of blender-tiles branch we've got..
2014-06-16Forgot this in previous commitSergey Sharybin
2014-06-16Make blender-* branches not being displayed on the splashSergey Sharybin
2014-06-16Add missing dependency to CMake's msgfmtSergey Sharybin
This could have lead to situation when CMake wouldn't re-generate .mo file from changed .po file.
2014-06-02OSX: Set Blender.app and Blenderplayer.app creation and modification date to ↵Jens Verwiebe
compiletime, else we would always have the time from checkout here
2014-06-01Sync changes with buildbot serverSergey Sharybin
2014-05-24msvc 2008 platofrm suffix changed to be -vc9Martijn Berger
2014-05-19make MSVC plaformsuffix check much stricter. For some reason MSVC_VERSION is setMartijn Berger
2014-05-18Promote MSVC 2013 to be the official platform (without a numbered suffix) ↵Martijn Berger
for scons
2014-05-18Update netbeans projectfile generator to v8Campbell Barton
2014-05-15Windows: Remove support for MSVC 2012 (VC11).Thomas Dinges
The officially supported compiled is now MSVC 2013, and MSVC 2008 will be faded out slowly over the coming weeks.
2014-05-11CMake: use project name when generating project filesCampbell Barton
2014-05-08Remove unused scons config filesCampbell Barton
2014-05-06CMake: mark vars as advancedCampbell Barton
2014-05-05Install_deps: explicitely disable OSL/LLVM seems needed...Bastien Montagne
2014-05-04Fix T40025: install_deps.sh generating wrong make flag for OSLBastien Montagne
Most cases should be handled OK now (not all though, would make script way too much tricky - bash is a hell of a messy language :/).
2014-05-03install_deps: always specify openexr/ilmbase versions to OIIO and OSL cmake, ↵Bastien Montagne
might help in some cases...
2014-05-01Install_deps.sh: do not use terminfo in our own llvm build.Bastien Montagne
llvm-config does not report it as link arg as it should (see http://stackoverflow.com/questions/21477407/llvm-3-5-fails-to-link).
2014-05-01Fix T39938: install_deps.sh fails when compiling OSLBastien Montagne
Should always use a fixed rev in git repos! Also done some other cleanup/fixes.
2014-04-30Windows: Disable Numpy for now, we miss the libs for Python 3.4.Thomas Dinges
Also make the flag WITH_BF_PYTHON_INSTALL_NUMPY flag actually work on Windows.
2014-04-30Cycles CUDA: make CUDA toolkit 6.0 the official supported version.Brecht Van Lommel
This also updates the configurations to build kernels for compute capability 5.0 cards, when using and older CUDA toolkit version this will be skipped. Also includes tweaks to improve performance with this version: * Increase max registers on sm_30, sm_35 and sm_50 * No longer use texture storage on sm_30
2014-04-30Python: move to version 3.4x on all platformsCampbell Barton
2014-04-30Remove hard coded Python version for sconsCampbell Barton
note: this isn't best way of extracting version without '.'
2014-04-23Update ffmpeg in install_deps.sh to 2.1.4.Bastien Montagne
2014-04-22install_deps: update to py3.4 and numpy1.8.Bastien Montagne
2014-04-22Corrected the commentSergey Sharybin
2014-04-22Switch buildbot to Python-3.4.0Sergey Sharybin
2014-04-18Disable quicktime when in cmake's lite configurationCampbell Barton
2014-04-15OSX/python: update to py 3.4Jens Verwiebe
2014-04-07Enable openmp in MinGW-w64Antony Riakiotakis
2014-04-06Install_deps.sh: tweaks to support new LLVM-3.4.Bastien Montagne
Issue is, looks like Debian testing's graphic backend now uses LLVM-3.4, which conflicts with 3.3 in Blender and makes it crash. So add support to handle 3.4, by both allowing to force a specific version for some libs, and switching back to head of official repo for OSL.
2014-04-05Great, now Debian Jessie as well can cause libyaml-cpp version mismatch... ↵Bastien Montagne
Update warning message!
2014-04-05Some stupid systems give limited powers to sudo... So add a --no-sudo option ↵Bastien Montagne
disabling usage of sudo! Note in this case, script becomes more or less useless, just spit out names of packages to install... Requested by Dalai Felinto over IRC.
2014-04-04Scons/cycles: fix header distribution for geomJens Verwiebe
2014-03-30fix scons ffmpeg libraries for mingw32Antony Riakiotakis
2014-03-29Checker percentage calc was wrong, also cleanupCampbell Barton
2014-03-29Update clang array checker for new clang py apiCampbell Barton
2014-03-27Windows: Upgrade FFmpeg from 0.10 to 2.1.4Sergey Sharybin
Fixes T39423: Blender crashes on iv41 encoded videos in thumbnail display mode Libraries are still being committed to the svn, so compilation might be broken for a while. Sorry for this, but can't really be avoided. Also, some typos in scons are possible.
2014-03-25Build file macro for testing unordered_map C++ container support.Lukas Tönne
Using unordered_map and unordered_set C++ container types currently requires careful testing or usage of boost, due to the various confusing C++ version differences in include paths and namespaces. Libmv defines tests for these cases in cmake and scons, such that ceres can use any available implementation, or fall back too std::map/std::set if none can be found. This patch generalizes this buildfile code by providing a Blender macro. * cmake: defines both the variables used by libmv at them moment as well as 2 variables UNORDERED_MAP_INCLUDE_PREFIX and UNORDERED_MAP_NAMESPACE, which can later be used in other C++ parts for convenience. * scons: adds a tool script returning the include prefix and namespace. Libmv checks these to define the appropriate definitions for ceres. Differential Revision: https://developer.blender.org/D425
2014-03-07tweaks to buildinfoSergey Sharybin
We wouldn't really have release branches, building will happen from annotated tags. Made it so building tag revision equals to a master branch.
2014-03-05Enable requests for buildbot and release builderSergey Sharybin
2014-03-05OSX/scons: according to last commit, , use the version variableJens Verwiebe
2014-03-04Build system: option to copy 'requests' from scons.Campbell Barton
2014-03-04OSX/scons: copy release/site-packages for OSX ( static py for now )Jens Verwiebe