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-05-18make.bat: Add option to only update sources from git.Ray Molenkamp
SVN takes a long time to sync even if there are no updates, the `code_update` parameter gives the option opt out of the SVN updates. This is a developer option, people just wanting to build blender and not do any development are highly recommended to keep using the `update` method.
2019-05-13make.bat: add option for enabling the OpenGL based tests.Ray Molenkamp
2019-04-20make.bat: remove --expand-tabs from "make format" on windows.Ray Molenkamp
following the change on linux.
2019-04-16Clang-format: Speed up detection of clang-formatSergey Sharybin
Don't construct the full build environment, following feedback from Ray.
2019-04-16GNUmakefile: move clang format utilityCampbell Barton
Makes more sense to place in 'utils_maintenance'.
2019-04-16Initial support of `make format` for WindowsSergey Sharybin
There are couple of caviats currently: - The script requires system-wide Python 3 available in the current search PATH as python.exe. This will get addressed soon by distributing unpacked Python binary in our libraries. - Since the libraries folder is to be known, this requires to have MSVC detected. Not too bad, since formatting is still way slower than detection, but still doesn't feel ideal.
2019-02-23make.bat: Preliminary Visual Studio 2019 support.Ray Molenkamp
VS2019 is binary compatible with the existing vc14 libraries and no new libraries libs are required in svn. VS2019 support requires cmake 3.14. VS2019 is still in pre-release state, you are required to explicitly select the pre-release version by using: make full 2019pre
2019-02-23Make.bat: Fix sub-module detectionRay Molenkamp
2019-02-17Merge branch 'blender2.7'Brecht Van Lommel
2019-02-16Windows: Fix building with llvm/clang 7.0.1Ray Molenkamp
For llvm 6 the visual studio integration was 'not great' and we had our own, which broke when llvm 7.0.1 came out. llvm now has properly supported integration available on the VS market place hence we can retire our custom support.
2019-01-25make.bat: remove stray quote in msvc2017 detection.Ray Molenkamp
Shouldn't cause issues, but better safe than sorry.
2018-12-21Update for moving blender2.8 to master.Brecht Van Lommel
2018-12-21Update for moving master to blender2.7 branch.Brecht Van Lommel
2018-10-31Merge remote-tracking branch 'origin/master' into blender2.8Ray Molenkamp
2018-10-31make.bat: fix unquoted variables.Ray Molenkamp
causing build issues for some users.
2018-10-30Fix "make update" on Windows not updating addons to the blender2.8 branch.Ray Molenkamp
based on rB8e183a83b7aa3bbdefcdea6a86ca2c0dbd00417f
2018-10-22Merge remote-tracking branch 'origin/master' into blender2.8Ray Molenkamp
2018-10-22Windows: Enable python debugging in Visual Studio.Ray Molenkamp
see D3817 for technical details, and https://wiki.blender.org/wiki/Tools/Debugging/Python_Visual_Studio for a end user quick-start guide. Differential Revision: https://developer.blender.org/D3817
2018-09-22Remove last traces of game engine and blenderplayerInes Almeida
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-08-14make.bat: fix ninja support.Ray Molenkamp
only worked with a fresh build folder.
2018-07-29make.bat : fix msvc 2017 detection.Ray Molenkamp
when 2017 was not found, it did not properly bail out of the rest of the detection process unless verbose mode was used.
2018-07-23make.bat : fix typoRay Molenkamp
pointed out by anchpop on irc.
2018-07-19make.bat : restore msvc2015 support.Ray Molenkamp
broke when i removed the 2013 support.
2018-07-17make.bat: remove msvc2013 support.Ray Molenkamp
2018-06-18make.bat: Fix msvc-2017 detection.Ray Molenkamp
D3485 by @manung Differential Revision: https://developer.blender.org/D3485
2018-06-16make.bat: Fix `make showhashes` not working.Ray Molenkamp
broke in recent refactor.
2018-06-05make.bat : move all experimental options to their own section in the help.Ray Molenkamp
2018-06-05make.bat : bring the help up to date with recent additions to the build script.Ray Molenkamp
2018-06-05make.bat : check for existence of ninja before using it.Ray Molenkamp
2018-06-05make.bat: change the way the vs buildtools are detected.Ray Molenkamp
The recent change also used the buildtools instead of the regular compiler, you now have to explicitly state what you want to use : 2017 - the standard msvc compiler 2017pre - the msvc compiler from the preview installation 2017b - the msvc compiler from the buildtools installation
2018-06-05make.bat : Fix clang+asan msbuild project generationRay Molenkamp
2018-05-31Add Asan support for clang on windows.Ray Molenkamp
This will currently only work for the RelWithDebInfo configuration since asan does not support the debug crt. for source line information in the reports, you need a copy of llvm-symbolizer in the blender folder or set the ASAN_SYMBOLIZER_PATH environment variable to point to it. Currently (as of 6.0.0) llvm-symbolizer does not ship with the binary clang/llvm distribution. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D3446
2018-05-30make.bat: fix support for building with just the build tools installed.Ray Molenkamp
2018-05-29make.bat : fix release build not getting the right settings.Ray Molenkamp
2018-05-29make.bat : add support for building with ninja and clang together.Ray Molenkamp
2018-05-28Windows: Add support for building with clang.Ray Molenkamp
This commit contains the minimum to make clang build/work with blender, asan and ninja build support is forthcoming Things to note: 1) Builds and runs, and is able to pass all tests (except for the freestyle_stroke_material.blend test which was broken at that time for all platforms by the looks of it) 2) It's slightly faster than msvc when using cycles. (time in seconds, on an i7-3370) victor_cpu msvc:3099.51 clang:2796.43 pavillon_barcelona_cpu msvc:1872.05 clang:1827.72 koro_cpu msvc:1097.58 clang:1006.51 fishy_cat_cpu msvc:815.37 clang:722.2 classroom_cpu msvc:1705.39 clang:1575.43 bmw27_cpu msvc:552.38 clang:561.53 barbershop_interior_cpu msvc:2134.93 clang:1922.33 3) clang on windows uses a drop in replacement for the Microsoft cl.exe (takes some of the Microsoft parameters, but not all, and takes some of the clang parameters but not all) and uses ms headers + libraries + linker, so you still need visual studio installed and will use our existing vc14 svn libs. 4) X64 only currently, X86 builds but crashes on startup. 5) Tested with llvm/clang 6.0.0 6) Requires visual studio integration, available at https://github.com/LazyDodo/llvm-vs2017-integration 7) The Microsoft compiler spawns a few copies of cl in parallel to get faster build times, clang doesn't, so the build time is 3-4x slower than with msvc. 8) No openmp support yet. Have not looked at this much, the binary distribution of clang doesn't seem to include it on windows. 9) No ASAN support yet, some of the sanitizers can be made to work, but it was decided to leave support out of this commit. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D3304
2018-05-27make.bat : Fix builtime.txt being written in the wrong folder.Ray Molenkamp
2018-05-26make.bat: Add support for building with ninja.Ray Molenkamp
ninja is an alternative to msbuild designed for fast rebuilds. However there is no IDE support, builds only from the command line. Comparison between msbuild and ninja for a full build, build time in seconds. Full Clean Build msbuild 867.5 Ninja 801.2 Difference -66.3 (-7.6%) Minor Change msbuild 43.0 Ninja 14.9 Difference -28.1 (-64.4%) No Changes msbuild 23.0 Ninja 6.1 Difference -16.9 (-73.5%)
2018-05-26make.bat: refactor make.batRay Molenkamp
make.bat was starting to become hard to maintain, this refactors it into separate batch files for each stage of the process. -Improved detection of msvc2013/2015 -Improved failure handling. -Added check for working msbuild and C++ compiler -Added verbose switch to ease trouble shooting. -Added Check if svn/cmake/git are in the path before using them -Display the build configuration before asking to download the libraries -Offer an option to recover an interrupted checkout of the libraries. -Automatically check out sub-modules in-case they are missing.