Skip to content

Instantly share code, notes, and snippets.

View CarterA's full-sized avatar

Carter Allen CarterA

View GitHub Profile
Warning: Unbrewed dylibs were found in /usr/local/lib
You have unbrewed dylibs in /usr/local/lib. If you didn't put them there on purpose,
they could cause problems when building Homebrew formulae.
Unexpected dylibs (delete if they are no longer needed):
/usr/local/lib/libonig.2.0.0.dylib
/usr/local/lib/libsane.1.0.21.dylib
You changed your cc to symlink to llvm.
This bypasses LLVM checks, and some formulae may mysteriously fail to work.
Warning: Unbrewed dylibs were found in /usr/local/lib
You have unbrewed dylibs in /usr/local/lib. If you didn't put them there on purpose,
they could cause problems when building Homebrew formulae.
Unexpected dylibs (delete if they are no longer needed):
/usr/local/lib/libonig.2.0.0.dylib
/usr/local/lib/libsane.1.0.21.dylib
Some folders in /usr/local/share/locale aren't writable.
This can happen if you "sudo make install" software that isn't managed
LICENSE bootstrap drover gclient.bat presubmit_canned_checks.py trychange.py
PRESUBMIT.py chrome-update-create-task.bat drover.bat gclient.py presubmit_support.py upload.py
README chrome-update.bat drover.py git-cl profile.xml watchlists.py
README.gclient chrome-update.py gcl git-gs revert
README.git-cl cpplint.bat gcl.bat git-try revert.bat
README.git-cl.codereview cpplint.py gcl.py hammer revert.py
WATCHLISTS create-chromium-git-src gclient hammer.bat tests
// Mergesort functions
void cz_merge(uint32_t *left, uint32_t *right, uint32_t *array, int length) {
for (int li = 0; li < (length / 2); li++) {
array[li] = left[li];
}
for (int ri = 0; ri < ((length - 1) / 2 + 1); ri++) {
array[(length / 2) + ri] = right[ri];
}
// Quicksort.
int pivot, beginning[MAX_LEVELS], end[MAX_LEVELS], i=0, left, right, swap;
beginning[0]=0; end[0]=ARRAY_LENGTH;
while (i>=0) {
left=beginning[i]; right=end[i]-1;
if (left < right) {
pivot=randoms.randomNumbers[left];
while (left < right) {
cz:~ carterallen$ brew install graphicsmagick
==> Downloading http://downloads.sourceforge.net/project/graphicsmagick/graphicsmagick/1.3.12/Graphi
File already downloaded and cached to /Users/carterallen/Library/Caches/Homebrew
==> ./configure --prefix=/usr/local/Cellar/graphicsmagick/1.3.12 --disable-dependency-tracking --ena
==> make install
/bin/sh /private/tmp/homebrew-graphicsmagick-1.3.12-zFNE/GraphicsMagick-1.3.12/ltdl/config/install-sh -d . ltdl/
cp ./ltdl/argz_.h ltdl/argz.h-t
mv ltdl/argz.h-t ltdl/argz.h
make install-am
\
cz:~ carterallen$ brew install node
==> Downloading http://ftp.gnu.org/pub/gnu/gnutls/gnutls-2.8.5.tar.bz2
File already downloaded and cached to /Users/carterallen/Library/Caches/Homebrew
==> ./configure --prefix=/usr/local/Cellar/gnutls/2.8.5 --disable-debug --disabl
==> make install
cat: ./.prev-version: No such file or directory
Making install in lib
Making install in gl
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
cat ./alloca.in.h; \
cz:~ carterallen$ brew install -v glib > ~/Desktop/iconv_log.txt
libtool: install: warning: remember to run `libtool --finish /private/tmp/homebrew-glib-2.22.4-3AhP/glib-2.22.4/iconv/lib'
readlink: illegal option -- f
usage: readlink [-n] [file ...]
configure: WARNING: *** FAM support will not be built (FAM library not found) ***
ghash.c: In function ‘g_hash_table_insert_internal’:
ghash.c:261: warning: ‘first_tombstone’ may be used uninitialized in this function
ghash.c:261: note: ‘first_tombstone’ was declared here
giochannel.c: In function ‘g_io_error_get_from_g_error’:
giochannel.c:186: warning: control reaches end of non-void function
==> Build Environment
CC: /usr/bin/cc
CXX: /usr/bin/c++
LD: /usr/bin/cc
CFLAGS: -O3 -march=core2 -msse4.1 -w -pipe
CXXFLAGS: -O3 -march=core2 -msse4.1 -w -pipe
CPPFLAGS: -I/usr/local/Cellar/gettext/0.17/include -I/usr/local/Cellar/gettext/0.17/include
LDFLAGS: -L/usr/local/Cellar/gettext/0.17/lib -L/usr/local/Cellar/gettext/0.17/lib
MAKEFLAGS: -j2
PATH: /usr/local/Cellar/gettext/0.17/bin:/usr/local/Cellar/gettext/0.17/bin:/depot_tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/texbin:/usr/X11/bin:/Users/carterallen/bin/
- (void)runMethodWithParameter:(TheParam *)paramName shouldRunImmediately:(BOOL)runImmediately {