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-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-30Python: move to version 3.4x on all platformsCampbell Barton
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-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-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-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-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-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-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!
2013-12-20Raise Python version to 3.3.3.Bastien Montagne
2013-12-17Better handling of new libnames of OpenEXR 2.1 (same solution as one used in ↵Bastien Montagne
OIIO/OSL source).
2013-12-15Fix typo in previous own commit (thanks to _FrnchFrgg_ for noticing this!).Bastien Montagne
2013-12-14Make libyaml-cpp-dev not-breaking case for deb-like distros, and colors for ↵Bastien Montagne
messages!
2013-12-12Raise llvm min version to 3.3, looks like this is needed for OSL nowadays...Bastien Montagne
2013-12-12Add libxml2, libyaml-cpp and libtinyxml to default dependencies ↵Bastien Montagne
(always-installed packages), looks like they are needed...
2013-12-12More updates, fixes and cleanup to install_deps.sh.Bastien Montagne
So, after hours of wild hunt, I think both CMake and Scons builds work again. There were several small issues hiding here and there, esp. for scons. *WARNING* the --all-static is currently officially broken (it was already quite useless in fact). I’m seriously considering dropping it completely, having a script compiling a chain of static libs in a complete working way for *two* different build systems is just too much work (static libs are *really* a nightmare at link time). Builders who want to generate static Blender (to share it e.g.) will have to handle things by hand for now. Main other points changed: * Many changes to generated settings for scons (notably, I had to hack around the fact that the short ld -l option does not work with lib names like 'Iex-2_1', which is not that surprising). * Opencollada remains the only lib built statically (can't get it to build dyn currently). * All other libs, even ILMBase ones, are now fully dynamic ones. * Some general cleanup with CMake definitions of built libs. * Git-libs do not clone again and again the repo anymore!
2013-12-11Minor fix to generated settings for scons (affected ilmbase/openexr).Bastien Montagne
2013-12-08Update install_deps.sh to OIIO 1.39 and OSL 1.4.0.Bastien Montagne
Note that I also updated OpenEXR to 2.1.0 (and updated our CMake openexr module as well). Users will have to update their build settings as told by the script (also in BUILD_NOTES.txt generated file)! Note I removed all ugly patches from this script, we are currently using custom git repo for OpenEXR/OIIO/OSL, hopefully we will soon be able to use vanillia code from official repos!
2013-10-31Minor update to r60953.Bastien Montagne
2013-10-27Update OpenEXR to 2.0.1, this seems to fix some issues.Bastien Montagne
I *really* have to go back over all our patches in this script and try to port them back in respective projects!
2013-10-07Fix for conf instructions for scons...Bastien Montagne
2013-09-27install_deps.sh fix: add explicit OGG lib handling, we need it to pass ↵Bastien Montagne
correct values for ffmpeg libraries (at least for static builds). I’m not close to understand why this has worked fine until today... :/ Only tested with Debian, but I would not expect any issue with Fedora/Suse/Arch, this is a quite simple change!
2013-09-20Fix own stupid error in previous commit... :/Bastien Montagne
2013-09-19Potential fix for install_deps.sh OSL build issues reported by users: run ↵Bastien Montagne
ldconfig immediately after lib compile (looks like OSL compile process needs boost libs...).
2013-09-17Fix py/numpy build under Suse, and minor other fixes/enhancements.Bastien Montagne
Also switch to python3.3.2
2013-09-17Somplify one-liner for CPU cores detection and make it aware of multi-CPU ↵Sergey Sharybin
computers
2013-09-16Grrr, forgot to update getopt command for updated args...Bastien Montagne
2013-09-16Add --required-numpy to force compilation of both py3.3 and numpy1.7 in case ↵Bastien Montagne
you really need numpy and 1.7 is not available!
2013-09-16Making install_deps.sh correctly see hyperthreadingDaniel Salazar
2013-09-16Install_deps.sh updates:Bastien Montagne
* Raise OpenCOLLADA version to 18da7f4109a8eafaa290a33f5550501cc4c8bae8 as requested by Gaia. * Made OSL build/install ON by default (no more an experimental feature!). * Use default LLVM version under Debian (specifying a version does not work with OSL when you have more that one installed :( ).
2013-08-22Fix [#36534] Errors in install_deps.sh script when running on Arch LinuxBastien Montagne
Patch provided by Darren Beck, thanks!
2013-08-10Linux install_deps: update OpenCOLLADA to ↵Bastien Montagne
828b60384552b83e55d2af7055f07d2c40b4d3f4 repo UID.
2013-06-30Patch [#35897] install_deps: add OpenEXR to ldconfig by Gavin Howard, thanks.Bastien Montagne
2013-06-26Update osl magic number when updating version ;)Bastien Montagne
2013-06-26Install Deps script:Thomas Dinges
* Use recent OSL 1.3.2 release.
2013-06-21Updating suse packman repo url, name and alias to go in line with what suse ↵Daniel Salazar
does right now. At least this should avoid duplicate packman repos on 12.3
2013-06-20Install_deps.sh: ask suse users whether they want to install packman or not ↵Bastien Montagne
(can be already installed/enabled from a different URL, Suse repositories management is to complex to be handled automatically at this point).
2013-06-15Add USE_PYTHON=OFF and USE_OCIO=OFF to OIIO compilation (we do not need ↵Bastien Montagne
either of those).
2013-05-31Stupid typo, reported by Eugenio Pignataro on ML, thx.Bastien Montagne
2013-05-29Various fixes for install_deps' scons options.Bastien Montagne
Also svn-ignore BUILD_NOTES.txt generated file.
2013-05-27And add Aarch (tested with amd64). Everything should be functionnal now...Bastien Montagne
2013-05-26Various fixes. Tested with OpenSuse 12.3 (amd64).Bastien Montagne