Blender Git Statistics -> Developers -> ldo
Lawrence D'Oliveiro (ldo)
Total Commits : 13
Master Commits : 13
Branch Commits : 0
First Commit : December 31, 2013
Latest Commit : April 29, 2014
Commits by Month
Date | Number of Commits | |
---|---|---|
April, 2014 | 1 | |
March, 2014 | 1 | |
February, 2014 | 7 | |
January, 2014 | 3 | |
December, 2013 | 1 |
Favourite Files
Filename | Total Edits |
---|---|
creator.c | 3 |
SConscript | 3 |
install_deps.sh | 1 |
prepare_release_env.sh | 1 |
pipeline.c | 1 |
cmake_linux_install.sh | 1 |
SConstruct | 1 |
Blender.py | 1 |
GNUmakefile | 1 |
SConscript | 1 |
File Changes
Action | Total | Per Commit |
---|---|---|
Modified | 17 | 1.3 |
Code Changes
Action | Total | Per Commit |
---|---|---|
Lines Added | 33 | 2.5 |
Lines Removed | 75 | 5.8 |
Latest commits
April 29, 2014, 12:03 (GMT) |
Code cleanup: don't use unnecessary .exe extension in scons, simplify code. Reviewed By: brecht Differential Revision: https://developer.blender.org/D236 |
March 2, 2014, 09:29 (GMT) |
Found another place where nproc can be used /proc/cpuinfo is a Linux-specific thing. Using GNU [[ http://www.gnu.org/software/coreutils/manual/html_node/nproc-invocation.html | nproc ]] should be more portable. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D377 |
February 27, 2014, 15:00 (GMT) |
patch cmake_linux_install.sh to do multithreaded build The script ##cmake_linux_install.sh## is currently invoking ##make## in single-threaded mode; this patch changes it to take advantage of all available CPU threads. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D358 |
February 27, 2014, 09:02 (GMT) |
Resubmission: Avoid UUOC in install_deps.sh This is a resubmission of the original patch from D255. Sorry, I didn�??t understand that subsequent patches added to a diff are considered to //override// previous ones, rather than add to them. Basically the comment for commit rB554eca1c288e has been applied to the wrong patch. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D359 |
February 22, 2014, 13:31 (GMT) |
Avoid UUOC in install_deps.sh The file ##build_files/build_environment/install_deps.sh## contains the following line: THREADS=`cat /proc/cpuinfo | grep processor | wc -l` The command within the backticks is a [[ http://catb.org/jargon/html/U/UUOC.html | Useless Use Of Cat ]]. A more compact way of writing the same thing (saving two subprocesses) is THREADS=`grep -c processor /proc/cpuinfo` or (using POSIX-preferred command-substitution parentheses instead of backticks) THREADS=$(grep -c processor /proc/cpuinfo) But the most compact, and least Linux-specific, way is to use the ##nproc##(1) command from the [[ http://www.gnu.org/software/coreutils/manual/html_node/nproc-invocation.html | GNU coreutils package ]]: THREADS=$(nproc) Reviewers: sergey, mont29 Reviewed by: mont29 Differential Revision: https://developer.blender.org/D255 |
February 4, 2014, 18:09 (GMT) |
SCons: code cleanup, shorter way to determine makesrna output directory. Reviewed By: brecht Differential Revision: https://developer.blender.org/D237 |
February 4, 2014, 18:01 (GMT) |
SCons: cleaner determination of 32-bit/64-bit builds Try not to be x86-centric, remove unneeded blenderdeps variable. Reviewed By: brecht Differential Revision: https://developer.blender.org/D240 |
February 4, 2014, 17:51 (GMT) |
Correct help: -b/--background does not take a file argument The documentation for the -b/--background option incorrectly states that it takes a <file>, however it can run also without a file with e.g. a script. Reviewed By: brecht Differential Revision: https://developer.blender.org/D250 |
February 4, 2014, 17:51 (GMT) |
Fix missing $BLENDER_USER_DATAFILES in command line help text. Reviewed By: brecht Differential Revision: https://developer.blender.org/D249 |
January 31, 2014, 12:20 (GMT) |
MiikaHweb - Blender Git Statistics v1.06