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-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
2014-02-20Fixes for buildinfo hash/branch detectionSergey Sharybin
Branch name and hash didn't work properly when having disconnected HEAD or when having current HEAD below upstream.
2014-02-19MSVC: add more warnings to match OSX/LinuxCampbell Barton
2014-02-19MSVC: improve warnings for scons and cmakeCampbell Barton
Some int/float conversion warnings were disabled by buildsystems but re-enabled by BLI_winstuff.h, the warnigns relate to conversions not considered issues on other systems so better just quiet them.
2014-02-19prepare 32bit build msvc2013 scons/buildbotMartijn Berger
2014-02-18OSX: more futurework for clang-openmp:Jens Verwiebe
- moved assumed location of omp lib to blender libs - prepared libiomp5 to link out of the box with cmake - changed according in scons - introduced a local var C_VENDOR, cause Apple clang 3.4 may not include omp support yet - added a linklibs for msgfmt ( may not be needed for other than OSX )
2014-02-13win32 MSVC 2013 add scons supportMartijn Berger
2014-02-13Add the date to the CPack rpm package versionDan Eicher
Updating rpms built from 'make package' has issues using the git hash since it isn't in a set order like svn commits, this lets it use the date to determine if the rpm is newer than the installed version. Also updates the license text.
2014-02-09OSX/scons: allow for compiling with clang-openmp-3.4Jens Verwiebe
See: http://clang-omp.github.io + fix a longstanding bad include in darwin-config
2014-02-07Fix T38370: Ubuntu 14.04 opencolorio segfaults blender on parsing ↵Bastien Montagne
colormanagement/config.ocio Ubuntu hack: add a --libyaml-cpp-ver parameter, to try to force installing a given version of this lib... (only for DEB-like distro, I dare hope Trusty (!) is the only affected distro. Not happy at all to have such things here, this is actually an Ubuntu bug, but will have to live with it I guess.
2014-02-04SCons: cleaner determination of 32-bit/64-bit buildsLawrence D'Oliveiro
Try not to be x86-centric, remove unneeded blenderdeps variable. Reviewed By: brecht Differential Revision: https://developer.blender.org/D240
2014-02-04Cleanup: remove completely all-static option, just too complex to support in ↵Bastien Montagne
modern linuxes!
2014-02-04Deb-like distro may use either jack or jack2, add support for this.Bastien Montagne
2014-01-31SCons: Simplify Endian determinationLawrence D'Oliveiro
Differential Revision: https://developer.blender.org/D252
2014-01-29Scons: refactor cycles kernel code to avoid building the AVX kernel withBrecht Van Lommel
compilers that don't support it. CMake still needs to updated to work the same for consistency, but this should fix the OS X buildbot at least.
2014-01-28Code cleanup: remove references to svn and code styleCampbell Barton
2014-01-27Buildbot OS X: compile with clang instead of GCC.Brecht Van Lommel
This should solve the missing -mavx option for Cycles, and also give better performance since GCC 4.2 is now 5 years old already.
2014-01-27Build System: icon files now depend on UI_icons.h for CMakeCampbell Barton
Now changing UI_icons.h causes icons to be re-generated, without this adding a new icon wouldn't automatically get into the generated PNG.
2014-01-20Cycles: Add a cmake config to easily compile Cycles Standalone.Thomas Dinges
On Linux/Mac OS X, simply type "make cycles" inside the Blender source directory, to get a standalone build of the engine. Reviewed by: Brecht Differential Revision: https://developer.blender.org/D228
2014-01-18install_deps.sh: Fix output conf for CMake (specifying root dirs for ↵Bastien Montagne
OIIO/OCIO is not needed when you use default path, but mandatory otherwise, simpler to always give them). Spotted by dingto on IRC, thanks!