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
2019-08-23Fix T69075: OSL build with install_deps.sh failing at runtimeBrecht Van Lommel
Now uses the same cmake flags as make deps.
2019-08-19build deps macOS: add PUGI_XML home to OSLArto Kitula
2019-08-16build_env: Added OpenImageDenoise to install_deps.shStefan Werner
Building OIDN still needs to be enabled explicitly with --with-oidn. It will fail with older versions of CMake or TBB, so I can't make any guarantees for various Linux distributions or versions.
2019-08-14Compositor: Added denoising nodeBrecht Van Lommel
This node is built on Intel's OpenImageDenoise library. Other denoisers could be integrated, for example Lukas' Cycles denoiser. Compositor: Made OpenImageDenoise optional, added CMake and build_env files to find OIDN Compositor: Fixed some warnings in the denoising operator build_environment: Updated OpenImageDenoise to 0.8.1 build_environment: Updated OpenImageDenoise in `make deps` for macOS Reviewers: sergey, jbakker, brecht Reviewed By: brecht Subscribers: YAFU, LazyDodo, Zen_YS, slumber, samgreen, tjvoll, yeus, ponomarovmax, getrad, coder.kalyan, vitos1k, Yegor, DeepBlender, kumaran7, Darkfie9825, aliasguru, aafra, ace_dragon, juang3d, pandrodor, cdog, lordodin, jtheninja, mavek, marcog, 5k1n2, Atair, rawalanche, 0o00o0oo, filibis, poor, lukasstockner97 Tags: #compositing Differential Revision: https://developer.blender.org/D4304
2019-08-14Install_deps: bump official numpy version to 1.17.0Bastien Montagne
Following recent ;ails re python version bump (looks like py version itself had already been bumped in that script).
2019-08-14deps: python 3.7.4 for windows.Lazydodo
This also updates to a new packaging method where python is runnable from the library folder rather than having tarballs in the release folder.
2019-08-14deps/cleanup: remove partial boost-python support.Lazydodo
boost python was not required by any dependency nor was it ever properly supported.
2019-08-14build_environment/python: Bump versions of our site-packagesLazydodo
IDNA 2.8 CHARDET 3.0.4 URLLIB3 1.25.3 CERTIFI 2019.6.16 REQUESTS 2.22.0 NUMPY 1.17.0
2019-08-02Deps: Fix build error with theora on windows.Lazydodo
2019-08-02Upgrade Python from 3.7.0 to 3.7.4Sybren A. Stüvel
2019-08-02make deps: avoid running pdflatex as part of building TheoraSybren A. Stüvel
On machines with pdflatex installed, this is run to build Theora.pdf. Unfortunately this process breaks, at least on my Ubuntu 18.04 LTS system. By setting `HAVE_PDFLATEX=no` (or any other value that is not "yes") this can be avoided. I don't think that it's important to have this PDF file built anyway, as it's not a dependency of Blender itself.
2019-06-28install_deps: Bumped OSL version to 3.4.0_RC2Jeroen Bakker
2019-06-27Build environment: Update OpenSubdiv to 3.4.0 RC 2Sergey Sharybin
Newer OpenSubdiv brings fixes and improvements for non-manifold meshes, which fixes some crashes we've experienced in the recent past when using Gregory patches. Additionally, thing new version of OpenSubdiv brings sparse patches, which allows to multi-thread topology refinement step.
2019-06-26Make deps: Fix detection/linking of PugiXML on LinuxSergey Sharybin
This time both full `make deps` and final compilation is tested on a freshly installed CentOS 7. The thing is: OpenImageIO is not configured to use an external PugiXML library, so it was compiling its own. At the same time the OpenShadingLanguage library was commanded to use an externally compiled PugiXML. This caused some sort of discrepancy which lead to Blender-link-time errors. Could be linking error, could be namespace related, could be ABI related. In any case since we do have PugiXML in the OpenImageIO already lets just stick to it.
2019-06-26Revert "Build script: Don't use external Pugi for OSL"Sergey Sharybin
The change did break compilation on default Ubuntu install for Stefan and on default CentOS install for myself. This reverts commit 64671e53d20c2a30c64b98c747b0e002218c3952.
2019-06-19Cleanup: style, indentationCampbell Barton
2019-06-02macOS: increase minimum required version to 10.11Brecht Van Lommel
This is in preparation of an the upcoming fix where we need to use a Metal layer to avoid performance issue when drawing with OpenGL. Note that we already only officially support 10.12+, the difference with this change is that Blender will not start at all on 10.9 and 10.10.
2019-04-17Cleanup: use 2 space indentation for CMakeCampbell Barton
2019-04-10Fix T63347: No longer supported disable-ffserver option in install_deps script.Bastien Montagne
FFMPEG removed ffserver and that option alltogether three years ago.
2019-04-03fix for freetype download link and llvm/clang header harvestingMartin Felke
2019-04-03deps_builder : copy llvm headers to lib folder.Ray Molenkamp
Were not needed previously, but the functions branch needs them.
2019-04-02Merge branch 'blender2.7'Sergey Sharybin
2019-03-29Build environment: update comment about required packages.Brecht Van Lommel
2019-03-25Merge branch 'blender2.7'Sergey Sharybin
2019-03-25Change remaining FTP server URIs to HTTP(s)Stephen Hassard
Most of the source tarballs are retrieved via http, but a few remain that are still downloaded via ftp. This causes some pain with corporate firewalls, so moving the last two URIs to http helps ease the build process. Reviewers: sergey Differential Revision: https://developer.blender.org/D4192
2019-03-25Merge branch 'blender2.7'Bastien Montagne
2019-03-25Include blosc, embree and opencollada into BUILD_NOTES.txt file.Bastien Montagne
For custom path selected during 'install_deps.sh' using '--source'/'--install', paths for blosc, embree and opencollada are not printed/inclued into BUILD_NOTES.txt file. As '/opt/lib/<package>' paths are hardcoded into CMakes's Find* modules, this error is not noticeable, but for custom paths it is. This patch includes those fixes/prints for those packages. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D4574
2019-03-21Install_deps: add clang-format packages.Bastien Montagne
Even though that one is not really useful just to build Blender, we can as well explicitely include it here, since all 'default' Blender builds will include full clang/llvm stack anyway (for Cycles and deps)...
2019-03-13Merge branch 'blender2.7'Brecht Van Lommel
2019-03-13Build environment: require Alsa/OSS/PulseAudio backends for OpenAL on Linux.Brecht Van Lommel
Otherwise we can silently build an OpenAL that can't actually playback audio.
2019-03-13Build environment: backport master changes to blender2.7.Brecht Van Lommel
We can keep these in sync for now.
2019-03-13Build environment: require Alsa/OSS/PulseAudio backends for OpenAL on Linux.Brecht Van Lommel
Otherwise we can silently build an OpenAL that can't actually playback audio.
2019-03-08build_environment/Windows: Copy llvm debug headers.Ray Molenkamp
llvm generates some header files at build time that differ between debug/release causing linker errors when you used the release headers for a debug build.
2019-03-08build_environment/Windows: Copy llvm debug headers.Ray Molenkamp
llvm generates some header files at build time that differ between debug/release causing linker errors when you used the release headers for a debug build.
2019-03-01build_environment: Fixed `make deps` on macOSStefan Werner
Two changes: Removed the explicit version for the macOS SDK, recent versions of Xcode have a symlink to the newest SDK. Fixed the build script for OpenMP by removing extra ' marks that install_name_tool took literally and replaced INSTALL_PATH with INSTALL_DIR.
2019-02-22Windows: Use static pthreads library.Ray Molenkamp
2019-02-22Windows: Use static pthreads library.Ray Molenkamp
2019-01-26Merge branch 'blender2.7'Brecht Van Lommel
2019-01-26macOS: add support for OpenMP, making smoke/fluid/cloth simulations faster.Arto Kitula
This bring macOS on par with Windows and Linux. It uses the OpenMP library added to our precompiled libraries. Custom flags are set because FindOpenMP from CMake below 3.12 does not support AppleClang, and more recent versions do not work with our custom directory location either. Differential Revision: https://developer.blender.org/D4257
2019-01-15Merge branch 'blender2.7'Campbell Barton
2019-01-14Build environment: fixes for Linux debug libraries build.Brecht Van Lommel
2019-01-09Merge branch 'blender2.7'Brecht Van Lommel
2019-01-09Build Environment: install clang-format for macOS / Linux.Brecht Van Lommel
It's already there for Windows.
2018-12-24Build script: Don't use external Pugi for OSLSergey Sharybin
Now, things are becoming REALLY confusing. The script does build pugi, but is never telling OIIO to use an external one. Which makes it to use a bundled one. Trying to link OSL to a different version of pugi causes a lot of linking errors. Interestingly enough, that was me who made OSL to use external pugi to solve configuration problem. But now i can not reproduce that anymore. Ideally we would either link everything against our pugi, or not compile it at all.
2018-12-14Merge branch 'master' into blender2.8Sergey Sharybin
2018-12-14Dependencies builder: Don't rely on system-wide PugiXMLSergey Sharybin
2018-12-13Merge remote-tracking branch 'origin/master' into blender2.8Ray Molenkamp
2018-12-13deps: add missing sqlite dll to windows build.Ray Molenkamp
2018-12-12Merge remote-tracking branch 'origin/master' into blender2.8Ray Molenkamp
2018-12-12dependencies windows: Replace pthreads-win32 2.9.1 with pthreads4w 3.0.0Ray Molenkamp
maintenance seems to have stopped for pthreads-win32