english Sivu saatavilla vain englanninkielisenä.

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

DateNumber of Commits
April, 20141
March, 20141
February, 20147
January, 20143
December, 20131

Favourite Files

FilenameTotal Edits
creator.c3
SConscript3
install_deps.sh1
prepare_release_env.sh1
pipeline.c1
cmake_linux_install.sh1
SConstruct1
Blender.py1
GNUmakefile1
SConscript1

File Changes

ActionTotalPer Commit
Modified171.3

Code Changes

ActionTotalPer Commit
Lines Added332.5
Lines Removed755.8

Latest commits Feed

Revision ef3eb7a by Lawrence D'Oliveiro / Brecht Van Lommel (master)
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
Revision 49e21f6 by Lawrence D'Oliveiro / Bastien Montagne (master)
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
Revision 44d79c5 by Lawrence D'Oliveiro / Bastien Montagne (master)
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
Revision 317f29d by Lawrence D'Oliveiro / Bastien Montagne (master)
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
Revision 554eca1 by Lawrence D'Oliveiro / Bastien Montagne (master)
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
Revision df944eb by Lawrence D'Oliveiro / Brecht Van Lommel (master)
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
Revision cb0a5ad by Lawrence D'Oliveiro / Brecht Van Lommel (master)
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
Revision 17b6143 by Lawrence D'Oliveiro / Brecht Van Lommel (master)
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
Revision 959da74 by Lawrence D'Oliveiro / Brecht Van Lommel (master)
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
Revision eeefbbc by Lawrence D'Oliveiro / Thomas Dinges (master)
January 31, 2014, 12:20 (GMT)
SCons: Simplify Endian determination

Differential Revision: https://developer.blender.org/D252

MiikaHweb - Blender Git Statistics v1.06
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021