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
2012-06-05Enable cuda sm_30 kernels for buildbotSergey Sharybin
2012-05-29Cycles / CUDA:Thomas Dinges
* Windows department switches to CUDA Toolkit 4.2 :) * Windows Buildbot uses that too now (thanks jesterKing) * Re-enable sm_13 for x86, compiled again with current SVN and the new toolkit. * All official builds for windows now come with sm_13, sm_20, sm_21 and sm_30 for the Kepler cards.
2012-05-28Scons / MSVC - Windows x64Thomas Dinges
* SSE/SSE2 is an unknown option for the compiler (Command line warning D9002 : ignoring unknown option '/arch:SSE2'), so it can be left out because on x64 it automatically builds with SSE and SSE2.
2012-05-27code cleanup: remove mode comments, these were applied very un-evenly ↵Campbell Barton
across a few files.
2012-05-27cmake editsCampbell Barton
- only show mingw option when building with mingw - always run cmake configure with convenience build targets so failed configurations stop re-configuring. - disable WITH_GHOST_XDND in 'make lite'
2012-05-23scons - Added option to not remove and unpack python modules bundle everyJoshua Leung
compile
2012-05-22Disable building of CUDA 1.3 kernels for cycles for win32 cmake and mingw32 ↵Antony Riakiotakis
scons. They were already disabled for scons MSVC 32bit.
2012-05-16CPack rpm cleanupDan Eicher
-- package name and .spec->Version match -- use find_lang macro for locales -- Requires & Provides (mostly) match the fedora .spec -- fix unpackaged file error for blender-thumbnailer.py TODO: figure out how persuade CPack to make multiple rpms to also package blenderplayer
2012-05-15Fix El Topo:Daniel Genrich
- Library compile errors - 2 Bugs (have been reported to lib owner) - LAPACK for cmake TODO: - Scons is still missing LAPACK lib define - Do other platforms got LAPACK lib?
2012-05-15Cleanup optimization compile flags for mingw-w64. Antony Riakiotakis
After testing it seems that for safe debug sessions, debug build optimizations need to be off. Also removed sse flags from release flags since they are included in ray optimization flags which are on by default.
2012-05-13Change the scons configuration for MinGW-w64 to be more in-line with cmake. ↵Antony Riakiotakis
Also deactivate openmp as it causes crashes when rendering with subsurf or multires modifiers
2012-05-13Disable sm_13 CUDA kernel building for now, as the build fails with out of ↵Nathan Letwory
memory.
2012-05-13Enable setting of CUDA kernels to compile on command-line:Nathan Letwory
python scons/scons.py BF_CYCLES_CUDA_BINARIES_ARCH=sm_20,sm21
2012-05-11Enable OpenCOLLADA support for MingW64 builds by default.Nathan Letwory
Note: don't forget to update your local checkout of lib/mingw64
2012-05-10Enable ffmpeg building with MinGW-w64. The libraries were compiled with gcc ↵Antony Riakiotakis
4.7, however is has been claimed there are issues with gcc > 4.4 so this is for testing purposes. Still it doesn't crash on startup anymore. Forgot to mention on ffmpeg lib commit that committed ffmpeg version is 0.10.2
2012-05-02Fix: recent commit setting python3.2 command should not be applied to this fileBrecht Van Lommel
scons build scripts are still using python2.
2012-05-02replace python3 command with python3.2, python3 isnt available on ubuntu.Campbell Barton
2012-04-30Windows / Scons:Thomas Dinges
* Disable CUDA kernel compile per default, so people who don't use it can compile file with the default config.
2012-04-28bump commit count, mingw32 -> mingw64Nathan Letwory
2012-04-28Add MingW as "platform"Nathan Letwory
2012-04-28Same mingw fix as for compileNathan Letwory
2012-04-27Changes to get mingw buildslaves going.Nathan Letwory
2012-04-25Enable building of the installer with MinGW-w64, patch by Caleb Joseph ↵Antony Riakiotakis
(Dobz) thanks a lot!
2012-04-24Lower optimization settings for MinGW-w64. Full optimization causes ↵Antony Riakiotakis
artifacts with empties and gods know what else. Turned on -ftree-vectorize to match MSVC behaviour for 64bit.
2012-04-24revert 45924, not a very clean solution, especially for external libraries ↵Antony Riakiotakis
and looks like -fpermissive is used in linux too
2012-04-24Remove mingw-w64 errors from loss of precision by converting 64bit pointers ↵Antony Riakiotakis
to ints. All cases found were harmless and the error behaviour could be turned off by the -fpermissive flag but I'd rather keep that off to detect any real problems should they arise.
2012-04-24Add libMV and Scons support for MinGW-w64, patches by Caleb Joseph with ↵Antony Riakiotakis
slight modifications. Thanks!
2012-04-23Update build files to use the new lib locations for MinGW. For builders: you ↵Antony Riakiotakis
will need to checkout https://svn.blender.org/svnroot/bf-blender/trunk/lib/mingw32/ to build with MinGW past this commit.
2012-04-22Solve restriction of MinGW that users have to turn ffmpeg on for cmake.Antony Riakiotakis
2012-04-15qtcreator/netbeans generators: fix for error getting project info when svn ↵Campbell Barton
isnt found (common on windows)
2012-04-15Scons ToDo:Thomas Dinges
* Made Frameserver building optional, added WITH_BF_FRAMESERVER. * Enabled per default in btools.py
2012-04-15Scons ToDo:Thomas Dinges
* Made Smoke building optional, added WITH_BF_SMOKE. * Enabled per default in btools.py
2012-04-12Scons / Windows release build configs:Thomas Dinges
* Enable CUDA per default, only thing the builder has to do for release libs, is to specify BF_CYCLES_CUDA_NVCC.
2012-04-07Scons:Thomas Dinges
* Some code and comment cleanup * Remove cmake equivalent variable comments * Remove some non used parameters from config files and btools: WITH_BF_FMOD, BF_VERSION. * Remove some commented non-used variables
2012-04-06Windows x64 / Scons:Thomas Dinges
* Enable WITH_BF_OPENJPEG per default, it was enabled for 32 bit systems, why not on x64? * This brings back JPEG 2000 support for win x64.
2012-03-30Added new command-line arguments --debug-ffmpeg and --debug-libmv toSergey Sharybin
be able to see debug prints coming from FFmpeg or libmv independently of general blender debug messages.
2012-03-28This does two things for cleanup builds made with SCons:Mitchell Stokes
1) Removes unwanted folders from Python/lib instead of just emptying them out. 2) Removes the test folder from Python/lib. This folder contains unit tests for Python (not the unittest module itself), and is about 10~12MB.
2012-03-20Adds support for utf paths on Windows.Alexander Kuznetsov
Not all file formats/calls are supported yet. It will be expended. Please from now on use BLI_fopen, BLI_* for file manipulations. For non-windows systems BLI_fopen just calls fopen. For Windows, the utf-8 string is translated to utf-16 string in order to call UTF version of the function.
2012-03-15OSX/scons: also allow for omp-builds with gcc-4.6.2 and 4.6.3 ( tested ), ↵Jens Verwiebe
TODO: check if we can compile objC/objC++ with newer gcc too
2012-02-26Missed Scons update for MinGW boostAntony Riakiotakis
2012-02-26Disable fancy scons output for buildbot. Should make reading build logs a ↵Sergey Sharybin
bit more easier.
2012-02-25code cleanup: white space, spelling & ';;' end of lines.Campbell Barton
2012-02-25OSX: scons: fix own mistake, truncate output of xcode-build -version to ↵Jens Verwiebe
major.minor version in config to change the var not only the print
2012-02-24OSX: set ffmpeg back in darwin-config according librenamingJens Verwiebe
2012-02-18XDND support now can be disabled using WITH_GHOST_XDND=OFF with CMake and ↵Sergey Sharybin
WITH_GHOST_XDND=False with SCons Disabled on FreeBSD platforms due to some linking errors.
2012-02-17patch [#30227] Various MSVC (32-bit) Warning and Typo FixesCampbell Barton
made some small edits - removed changes to AVI reading since the data types are apart of the format spec. - absf -> abs for a double value in render code.
2012-02-17Reverting changes made to build systems when was upgrading OpenAL.Sergey Sharybin
Reverting to openal from creative because own builds doesn't deal with 3D sound. Hopefully it wouldn't lead to crashes caused by ffmpeg+openal (for resolving which libraries were updated to openal-soft).
2012-02-17OSX: since XCode 4.3 the developer directory is inside XCode.app bundle, so ↵Jens Verwiebe
we handle path according XCODE_VERSION now
2012-02-14Buildbot: WITH_BF_CYCLES_CUDA_BINARIES should be set for packing stage too.Sergey Sharybin
2012-02-14Buildbot: another attempt to make Windows builds support CUDASergey Sharybin
Set BF_CYCLES_CUDA_NVCC to nvcc.exe, hopefully it's on search path at builder machine.