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-01Sync changes with buildbot serverSergey Sharybin
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-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-22Corrected the commentSergey Sharybin
2014-04-22Switch buildbot to Python-3.4.0Sergey Sharybin
2014-03-05Enable requests for buildbot and release builderSergey Sharybin
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-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.
2013-12-29Buildbot SCons MSVC 2013 packing also requires something extraMartijn Berger
2013-12-29MSVC 2013 buildbot changesMartijn Berger
2013-11-25Buildbot: move lib step before blender.git stepSergey Sharybin
This is an attempt to make it so revision from git SHA is being displayed, not from libs svn revision.
2013-11-19Buildbot: update configuration fileSergey Sharybin
Consider this configuration final-1 for the migration, Linux and OSX slaves seems to be fine, Windows slave would need some changes from the slave side.
2013-11-19Buildbot: fix path got pack stepSergey Sharybin
2013-11-19Buildbot: tweaks for source directorySergey Sharybin
Need this so checkout of existing svn does not interferes with new git checkout which would need to be done.
2013-11-07OSX/buildbot: after scons refactor we only need the vars to changeJens Verwiebe
2013-11-06OSX/scons: simplification for getting the system version ( major, minor ), ↵Jens Verwiebe
use sw_vers -productVersion instead of uname -r, we must not redine it then from darwin version -> osx version
2013-11-06Quicktime: remove backend with the old quicktime API, and keep the QTKit ↵Brecht Van Lommel
backend. This means that if you have WITH_BF_QUICKTIME or WITH_CODEC_QUICKTIME enabled, it will always use QTKit. The old backend was only used on 32 bit OS X builds, now 32 and 64 bit builds will give consistent input/output. On Windows or Linux quicktime isn't being used.
2013-11-05OSX/scons: buildbot cleanup following darwin-configJens Verwiebe
2013-11-05OSX: also remove USE_QTKIT option from configs, leave env var for later use ↵Jens Verwiebe
( always True )
2013-11-05OSX: buildbot cleanups after carbon removalJens Verwiebe
2013-09-06CMake and scons update to detect OS X 10.9, cmake patch by Jake Kauth.Brecht Van Lommel
2013-06-24replace use of 'a.find(b) != -1' --> 'b in a'Campbell Barton
2013-06-23Switch buildbot to use OpenEXR-2.0Sergey Sharybin
2013-06-20Move DLL copying to before actual build process.Nathan Letwory
2013-06-20Cycles: update build configurations to include CUDA sm_35 architecture. When ↵Brecht Van Lommel
using a compiler older than CUDA 5.0 it will give a warning and skip this architecture.
2013-06-18Scons and BuildBot changes for MSVC 2012 support.Jürgen Herrmann
Thanks Brecht and Thomas for reviewing ;)
2013-06-15Buildbot: use relative path for redistributable dlls on windows.Brecht Van Lommel
2013-06-15Buildbot: use 1 thread for windows builds.Brecht Van Lommel
2013-06-01Updtae buildbot's master.vfgSergey Sharybin
2013-05-07Fix OS X 32 bit build error, and bring buildbot config in sync with default.Brecht Van Lommel
2013-04-23Buildbot tweaksSergey Sharybin
Add numpy installation to blender player configuration, this is so because player is building first and it installs python, which prevented numpy installation from blender configuration.
2013-04-18Enable numpy install for buildbotSergey Sharybin
Numpy is compiled at build environment, but importing it from blender somehow fails. Will need help of Campbell for this.
2013-03-28code cleanup: python/pep8 and double-promotion warnings.Campbell Barton
2013-03-27Fix #33518: Jack sync doesn't work in 2.64, 2.64 or 2.65 stable versionsSergey Sharybin
Added new build option WITH_JACK_DYNLOAD for CMake and WITH_BF_JACK_DYNLOAD for SCons, which means there'll be no build-time linking against libjack and getting symbols from libjack will happen runtime using dlopen and dlsym tricks. Alternative would be to use weak linking, but it'll require having wrapper for preloading libjack. This new options are disabled by default and they only intended to be used on linux. Other platforms shall not be using this and there shall be no functional changes on non-linux platforms at all.
2013-03-12Woops, installing dlls shall happen after all the folders are created.Sergey Sharybin
2013-03-12Made a mistake in recent windows buildbot tweaks.Sergey Sharybin
Didn't count indentation correct..
2013-03-11Mixed paths to redist libraries in recent commitSergey Sharybin
2013-03-11Windows buildbot tweaksSergey Sharybin
Make it so install directory is being nicely cleaned before next build, which makes it automatically removing all old files from previous installations.
2013-03-11Fix first regression introduced with r55173: need to import shutil before ↵Sergey Sharybin
using methods from it Otherwise linux buildbot fails dramatically. That revision also leads to msvc runtime libs being removed, will fix this in separate commit. Take more respect for such creepy as linux and windows platforms, they're not so bad!
2013-03-10Buildbot: mac configuration files for i386 and x86_64.Brecht Van Lommel
2013-02-21Cycles GPU rendering:Thomas Dinges
* Deprecate computing capability 1.3 (sm_13) This commit disables auto build of sm_13 CUDA platform, which means that starting with Blender 2.67, we don't support sm_13 devices anymore. It has become difficult to support that and it was already feature incomplete (no render-passes, AO, Multi Closure etc). It's still possible to manually enable sm_13 for own tests, but building might break in the future.
2013-02-12Buildbot: revert r54465 and r54466 -- issue was not caused bySergey Sharybin
crosscompilation, but was caused by some bugs in toolkit itself. Shall be all fine now (at least it is on my laptop now). Let give it another try!
2013-02-11Buildbot: -WITHOUT_BF_OVERWRITE_INSTALL should not be needed nowSergey Sharybin
2013-02-11Buildbot: switch to using native toolkit againSergey Sharybin
Crosscompiling of cubins doesn't work on linux with toolkit 4.2, so use native toolkit for now. Disabled sm_13 for 32bit platform for now. Would keep cudakernels build target for a while. It doesn't hurt being in the code and it could be helpful again once we'll switch to toolkit 5.x where crosscompilation works fine. Some further tweaks could probably be needed still, let's see how building goes on buildbot now :)
2013-01-16code cleanup:Campbell Barton
- cycles ui used 'cscene' for scene.cycles and scene.cycles_curves - style cleanup
2013-01-14Cuda binaries workaround for buildbot shall no longer be needed.Sergey Sharybin
2013-01-12Buildbot: fix for missing CUDA compute after recent changesSergey Sharybin
Issue was caused by how CUDA devices availability done in Cycles. Basically, if there's no WITH_CUDA_BINARIES buildtime, nvcc becomes mandatory dependency. Since kernels are building in separate target now, this logic broke a bit. Perhaps condition in util_cuda shall be changed to be a bit smarter, but for now just work-around by enabling CUDA binaries when building Cycles. Made it empty arch list to be sure no kernels will try to re-compile after cudakernels target is done.
2013-01-10Stripping and packaging shall happen inside of chroot as wellSergey Sharybin
2013-01-10Further tweaks to buildbotSergey Sharybin
- BF_BITNESS should be passed as a command line argument - Made it so CUDA binaries and OSL compiled scripts would be installed regardless WITH_BF_PYTHON (which seems to be quite obvious) - Disable overwrite install, so CUDA kernels installed by it's build target will be preserved when building blender itself.
2013-01-10Switch linux buildbot to compile all cuda kernels in 64bit environmentSergey Sharybin
Solves memory limit issues when building sm_13 for 32bit platform. Some further refinement of patch could be needed.