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
2018-09-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3700
2018-09-19make.bat: fix build error when there are spaces in the path to svn/git/cmakeRay Molenkamp
2018-09-19Cleanup: trailing spaceCampbell Barton
2018-09-18FIX: linker error with a 'make deps' library set and opencollada enabled.Ray Molenkamp
PCRE_LIBRARIES was not being set if the pcre library was found but not the headers.
2018-09-17build_files: bump python version in FindPythonLibsUnix.cmake to 3.7 now that ↵Ray Molenkamp
all platforms have been updated
2018-09-17build_environment: linux/python, help python find ffi.Ray Molenkamp
we were building ffi, but python wasn't finding it.
2018-09-17build_environment: ffi/linux force predictable lib path.Ray Molenkamp
ffi stubbornly wants to put libs in lib64 even when you tell it not to on some linux distributions. patch based on sed fix the gentoo guys did [1] [1] https://bugs.gentoo.org/462814
2018-09-17Install_deps: workaround building bloody broken OpenEXR release.Bastien Montagne
2018-09-17build_environment: force a consistent libdir across Linux distributions.Ray Molenkamp
on some distributions libs ended up in lib64 confusing the cmake builder.
2018-09-14Fix OpenColorIO link errors in some Linux builds.Brecht Van Lommel
The library can get installed in a lib/static subdirectory, so search there as well now.
2018-09-13Fix building deps when OpenCV dev package is present.Bastien Montagne
Since we are not linking against OpenCV ourselves, that generated linking errors later on (while building OSL e.g.). Those 'open' libs link against way too many other libs... :/ Thanks to @intrah for initial report (T56785), and @LazyDodo for suggested solution.
2018-09-13Cleanup: move 'make help_features' into own fileCampbell Barton
2018-09-12CMake: add openjpeg 2x search pathsCampbell Barton
Wasn't finding the include path by on Linux.
2018-09-11Build: require OpenJPEG 2.x minimum, remove bundled version.Brecht Van Lommel
* WITH_SYSTEM_OPENJPEG is removed and is now always on, this was already the case for macOS and Windows. * This should not break existing Linx builds. If there is no new enough OpenJPEG installed, CMake will no find libopenjp2 and WITH_IMAGE_OPENJPEG will be disabled. * install_deps.sh was updated with new package names, since distributions put this version in a new package. Differential Revision: https://developer.blender.org/D3663
2018-09-11Build: update for new macOS libraries.Brecht Van Lommel
Run "make update", or "svn update" in lib/darwin to get the matching precompiled libraries.
2018-09-11Build Environment: updates for macOS.Brecht Van Lommel
Mainly this is following Linux to build own xml2/lzma/ssl/sqlite and linking them all statically. This ensures the Python ssl module uses a recent openssl version rather than a very old one shipped with macOS.
2018-09-07Install_deps: fix llvm/clang ARCH package names.Bastien Montagne
Issue raised in T56540, thanks. Also tried to re-enable using fedora's llvm/clang packages, would hope and assume old issue here is fixed.
2018-09-07Install_deps: Fix wrong URL for ILMBase/OpenEXR source archives.Bastien Montagne
They also went to github...
2018-09-07Install_deps: Fix building python on fedora 28Bastien Montagne
Looks like libffi is now a dependency of python as well... Done it for the other distro as well, just in case. ;)
2018-09-06Update install_deps.sh to latest libs.Bastien Montagne
Tested with Debian Testing, might need some adjustements for other distributions... Also removed last patches we used here, we shall not need any anymore!
2018-08-31Buildbot: Usable PIESergey Sharybin
Makes it impossible to run from GUI on certain platforms, see T56628.
2018-08-31Fix T56618: crash in release builds when GHOST asserts.Brecht Van Lommel
WITH_ASSERT_ABORT was not disabled for release builds. In most cases asserts are disabled in release builds, but not always. This also changes the buildbot to use blender_release.cmake instead of blender_full.cmake, the only effective difference should be WITH_ASSERT_ABORT.
2018-08-30Buildbot: Correction to previous commitSergey Sharybin
2018-08-30Buildbot: Attempt to fix glibc-2.19 compilationSergey Sharybin
It is likely to be retired, but for until then lets ensure it works.
2018-08-30Build environment: Tweak to harvasting scriptSergey Sharybin
The idea is to make find_package() to succeed without any extra tips given. For this, we need header files to be harvasted.
2018-08-30Buildbot: Get rid of OpenJPEG 2 hackSergey Sharybin
Also clarified some options and decisions.
2018-08-30CMake: Automatically detect OpenJPEG 2 librariesSergey Sharybin
There is chance that on a system with both versions installed this *might* cause some issues. Such system will be pain to support out of the box anyway. This change allows to use precompiled libraries without extra modifications in the config.
2018-08-29Buildbot: Tweak configuration to actually ve successful in chrootSergey Sharybin
2018-08-29Buildbot: Make configuration to pass config stateSergey Sharybin
- Foe some reason CMake's platform and processor are not intialized there. - Need to set variables in cache, otherwise they are not visible in the actual CMake files.
2018-08-29Cleanup: trailing spaceCampbell Barton
2018-08-29Cleanup: remove unused build environment patches.Brecht Van Lommel
2018-08-29Buildbot: Some inital work to support newer chroot environmentSergey Sharybin
2018-08-29CMake: Allow specifying custom LIBDIR on UnixSergey Sharybin
Works similar to how maxOS deals with this.
2018-08-29CMake: Comply with include path reported by FindOpenGL.cmakeSergey Sharybin
The script clearly states: This makes the presumption that you are include al.h like #include "al.h" and not #include <AL/al.h> The reason for this is that the latter is not entirely portable. Windows/Creative Labs does not by default put their headers in AL/ and OS X uses the convention <OpenAL/al.h>. This commit makes default precompiled OpenAL to be properly detected and also removes hack on MacOS which was finding the OpenAL package but then was overwriting include directory. Note, that new audaspace in 2.8 is using expected #include <al.h>.
2018-08-29CMake: Make sure zlib folder comes first for precompiled Linux librariesSergey Sharybin
Without this find_package(ZLIB) will find ZLib from OpenCollada folder, which has older ABI and is not what was used to link PNG against.
2018-08-29Build environment: Fix compilation of boost on Linux 32bitSergey Sharybin
2018-08-28Build environment: Ensure Python is using static ffiSergey Sharybin
Surely, need to compile ffi first :) Good news are: Python seems static enough now!
2018-08-28Build environment: Make sure Python is linkign against static ZlibSergey Sharybin
There is system-wide libz development package installed by default, needed for some other dependencies. This patch ensures Python will use our own self-compiled Zlib.
2018-08-28Build environment: Enable bzip2, lzma and sqlite for Python on LinuxSergey Sharybin
2018-08-28cmake: adjustments required for lib-upgrade on windows.Ray Molenkamp
2018-08-28build_environment: llvm only copy lib files for the debug build.Ray Molenkamp
2018-08-27Fix T56557: wrong hash in Windows buildbot builds.Brecht Van Lommel
2018-08-27Build Environment: fix Windows Alembic build.Brecht Van Lommel
Ideally we should remove this difference between platforms, but for now just do the simple fix.
2018-08-27Build environment: Enable SSL for Python on LinuxSergey Sharybin
This involved getting SSL compiled from sources first, ensuring it is a static library placement independent code. Configuration is based on what Debian is using. CFlags required to have own configuration file, which i didn't find a better place that next to the corresponding CMake file. It is OpenSSL btw. It is set to Python via --with-openssl= configuration argument. This works fine in a clean chroot, but having libssl-dev installed might make Python to prefer system wide library, This was worked around by using libssl_pic.a name for the library and modifying setup.py. Would be cool to ensure system wide libraries are not a problem, but official release builder is safe against this, since it will catch possible non-static dependencies. There is also a new map file which shadows bunch of Python symbols. Without this Python's shared libraries might bring conflicting symbols to Blender namespace at runtime. Hopefully this doesn't break other platforms.
2018-08-27Build environment: Fix for C placement independent codeSergey Sharybin
Need to pass -fPIC to C code as well. Without this blosc is not being properly placement independent.
2018-08-27Build Environment: fix alembic, openvdb, ffmpeg, osl build on Linux.Brecht Van Lommel
2018-08-26Cleanup: trailing spaceCampbell Barton
2018-08-26build_environment: fix building openvdb on win32Ray Molenkamp
2018-08-26build_environment: fix build-flags on windows.Ray Molenkamp
build all object files with /bigobj since multiple of the dependencies go over the limit on x86
2018-08-26build_environment: cleanup harvest on windowsRay Molenkamp