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
2015-12-03Buildbot: Another attmept to solve windowsSergey Sharybin
Also de-duplicate bit of code.
2015-12-03Buildbot: attempt to solve packing on windowsSergey Sharybin
2015-12-03Buildbot: Disable tests on Linux buildersSergey Sharybin
No idea why they works on windows, but points are: - libs/tests folder is NOT checked out on any platforms - render_povray addon does mkdir on a path which might not have parents There might be some other issues, but those are kinda stoppers for us.
2015-12-03Buildbot: Fix typoSergey Sharybin
What a shame..
2015-12-03Buildbot: Make sure install directory always existsSergey Sharybin
2015-12-03Buildbot: Make sure buildbot_upload.zip is created in the right placeSergey Sharybin
2015-12-03Buildbot: Fix wrong builder name checkSergey Sharybin
2015-12-03Buildbot: Switch Linux builders to the cmake onesSergey Sharybin
There'll still need to be some tweaks to be done, but it's required first step.
2015-12-03Buildbot: Always expect buildbot_upload.zip to be in install/ folderSergey Sharybin
This we we don't have difference between builders on different platforms.
2015-12-03Buildbot: De-duplicate some path definitions in pack targetSergey Sharybin
Should be no functional changes.
2015-12-02Buildbot: Attempt to resolve wrong path to the buildbot_upload.zipSergey Sharybin
It is expected to be in the build folder for the cmake. Ideally it should be build/<builder> or install/<builder> but that's a bit more involved change. Will look into it later.
2015-12-02Buildbot: Attempt to fix cpack target on windowsSergey Sharybin
Was using wrong working directory.
2015-12-02Buildbot: Don't specify install directory for Windows buildsSergey Sharybin
Installation is to happen within the build folder, no special folder for this is required.
2015-12-02Buildbot: Fix typoSergey Sharybin
2015-12-02Buildbot: Initial work to move linux build environment to CMakeSergey Sharybin
This is so called "seems to work in dry tests" commit which is aimed to switch linux release environment to CMake. Some notes: - There's no special handle of libstdc++, but it wasn't really static for quite some time in SCons configuration and nobody really complained. - It was quite tricky to get OpenMP linked statically with just using some configuration so we went ahead and added a special option to CMake now which is only exist on Linux and advertised as shouldn't be used. - Packing is happening manually in slave_pack.py. This is because we have to add some really special files to the archive (mesa libraries for example) which we can't really handle from CMake/CPack in a nice generic way. Don't think it's bad approach, at least crappynness is localized and it's not _that_ crappy anyway. - Windows buildbot should keep working, but needs doublechecing. It's just a build folder changed, but you never know what it might imply. - Some further tweaks are likely needed to ensure all builders are working. Thanks Campbell for assistance in this patch!
2015-12-02CMake: Enable Cycles OSL for the full blender configurationSergey Sharybin
2015-11-30install_deps.sh: add libsndfile (seems to be mandatory for correct flac export?)Bastien Montagne
Related to T46886.
2015-11-30Buildbot: Enable sndfile librarySergey Sharybin
It was enabled for other platforms already and this could fix some of the reported bugs.
2015-11-28install_deps.sh: always give py version arg to cmake/scons (same as we ↵Bastien Montagne
already do with llvm). This should avoid 'casual builders' to have issues when we switch py versions.
2015-11-28Move linux's scons to py3.5 too!Bastien Montagne
2015-11-27missed last commitCampbell Barton
2015-11-27CMake/SCons: set Python to 3.5Campbell Barton
2015-11-25install_deps.sh: Updated official boost version (grrr).Bastien Montagne
2015-11-25install_deps.sh: Updated official Python (to 3.5.0) and NumPy (to 1.10.1).Bastien Montagne
2015-11-25OSX bump python to 3.5Martijn Berger
2015-11-24Buildbot: Switch Linux builds to Python 3.5Sergey Sharybin
2015-11-24install_deps.sh: update official numpy version.Bastien Montagne
2015-11-23install_deps.sh: Fix dependencies between (built) libs.Bastien Montagne
Who in hell did make OSD dependant on llvm???
2015-11-23install_deps.sh: Cleanup: Use correct boolean checks.Bastien Montagne
Yeah... that is correct bash boolean check syntax. Pretty sure even BASIC or Perl do better. See http://stackoverflow.com/questions/2953646/how-to-declare-and-use-boolean-variables-in-shell-script
2015-11-23install_deps.sh: add option to force building libs instead of using ↵Bastien Montagne
packages, and limited fallback for unsuported distro. This commit adds '--build-foo' options to force the script to build relevant libraries instead of trying to use packages from the distribution. In addition, it also now offers (with those '--build-foo' options) the possibility to build libraries on distributions that are not fully supported. This is limited, but should still help people once they have installed themselves the basics of dependencies - boost, llvm, osl/osd etc. are not libraries that are really easy to build. DISCLAIMER: I did not take the 20 (or more) hours needed to test all combinations over all distributions, and given the size of the changes, bad sneaky typos are quite probable, so please report if you get some errors!
2015-11-23install_deps.sh: refactor message about needed dependencies, and add option ↵Bastien Montagne
to show it and exit (--show-deps). More info about 'official' source and versions of main libraries handled by the script have also been added to that info option.
2015-11-23C99 is now the C standard for all our C code.Brecht Van Lommel
The main new feature is mixed variable declarations and code, which can help reduce uninitialized variables or accidental variable reuse. Due to incomplete C99 support in VS 2013, variable length arrays are not supported, BLI_array_alloca must still be used. The header <tgmath.h> is also not supported. Differential Revision: https://developer.blender.org/D1631
2015-11-17Fix for previous own commit (logical error - I hate bash).Bastien Montagne
2015-11-17Install_deps.sh: More attempt to fix building OSL on newer distro.Bastien Montagne
Now it looks like our version of OSL is not compatible with OIIO 1.5... sigh...
2015-11-17Fix (unreported) install_deps.sh --force-openexr option not working.Bastien Montagne
2015-11-17install_deps.sh: point to newer own OSL rev (should fix issues on recent ↵Bastien Montagne
distro featuring recent ilmbase libs).
2015-11-15windows / msvc bump to python 3.5Martijn Berger
2015-11-07Change cpack package name to be "blender" instead of "Blender"Martijn Berger
2015-11-07[Windows] Make installer use the templateMartijn Berger
2015-10-31Fix netbeans project generatorCampbell Barton
Need to escape defines
2015-10-28Buldbot: Disable 32bit kernelsSergey Sharybin
Currently disable all of them, in practice i think way to go should be: - Disable Experimental kernels on 32 bit, build up to sm_35 - Later we can drop all 32bit kernels, but try to keep at least one release with some of the kernels (they'll cover 99% of users anyway) Before doing any changes we should surely communicate such a changes before we apply them.
2015-10-11CMake: Enable WITH_PYTHON_INSTALL for lite buildsCampbell Barton
This is needed to run on OSX and Windows when system python isn't found.
2015-10-11Revert "Buildbot: Test enable CUDA binaries for Win32"Bastien Montagne
This reverts commit 4f296138949e7aa000a1ea52646b57d640b6d563, since Cuda fails again on win32 buildbot...
2015-10-10CMake: minor message cleanups.Brecht Van Lommel
2015-10-05Buildbot: Disable use of own Clang for OSX buildsSergey Sharybin
Our version of clang fails with latest SDK. It's not really clear if such change will disable openmp or not (-fopenmp doesn't throw an error, but it might be a silent fail). In any case, builds without OpenMP is better than no builds at all.\
2015-10-05Fix T46377: No python executable in 2.76 rc3 distribution for OSXSergey Sharybin
2015-10-03InstallDeps: Fix broken OSL (would not generate valid default names for its ↵Bastien Montagne
.oso pre-compiled files). Also, externalize temp/hacky patches in own dir, much much cleaner than integrating them in bash script!
2015-09-22Install_deps: Hopefully fix broken checks for numpy package in fedora-like ↵Bastien Montagne
distro.
2015-09-22Install_deps: Add command line options to saved BUILD_NOTES.txt.Bastien Montagne
Requested by Daniel Salazar (zanqdo) over IRC.
2015-09-09Buildbot: Test enable CUDA binaries for Win32Sergey Sharybin
Linux 32bit seems to work fine now, let's see if Win32 also works.