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-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
2014-03-04Build system: use lstrip with sconsCampbell Barton
2014-03-04Build system copy release/site-packages for windowsCampbell Barton
2014-03-04Build system support for numpy on ms-windowsCampbell Barton
2014-03-04Scons: remove lcms referenceCampbell Barton
2014-02-27patch cmake_linux_install.sh to do multithreaded buildLawrence D'Oliveiro
The script ##cmake_linux_install.sh## is currently invoking ##make## in single-threaded mode; this patch changes it to take advantage of all available CPU threads. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D358
2014-02-27Resubmission: Avoid UUOC in install_deps.shLawrence D'Oliveiro
This is a resubmission of the original patch from D255. Sorry, I didn’t understand that subsequent patches added to a diff are considered to //override// previous ones, rather than add to them. Basically the comment for commit rB554eca1c288e has been applied to the wrong patch. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D359
2014-02-25On MSVC 2013 64 bit set the default to build a vista API targetted binary.Martijn Berger
2014-02-24OSX/scons: cp needs the targetdir to be created ( ditto does it itself ),Jens Verwiebe
changing the order of commands let us use cp again
2014-02-24OSX/scons: Fix language menu not showing up in prefs:Jens Verwiebe
The languages file was not installed to locale due it has no extension, using ditto now
2014-02-22Avoid UUOC in install_deps.shLawrence D'Oliveiro
The file ##build_files/build_environment/install_deps.sh## contains the following line: THREADS=`cat /proc/cpuinfo | grep processor | wc -l` The command within the backticks is a [[ http://catb.org/jargon/html/U/UUOC.html | Useless Use Of Cat ]]. A more compact way of writing the same thing (saving two subprocesses) is THREADS=`grep -c processor /proc/cpuinfo` or (using POSIX-preferred command-substitution parentheses instead of backticks) THREADS=$(grep -c processor /proc/cpuinfo) But the most compact, and least Linux-specific, way is to use the ##nproc##(1) command from the [[ http://www.gnu.org/software/coreutils/manual/html_node/nproc-invocation.html | GNU coreutils package ]]: THREADS=$(nproc) Reviewers: sergey, mont29 Reviewed by: mont29 Differential Revision: https://developer.blender.org/D255