Created
January 8, 2017 11:56
-
-
Save nijikon/1e4acd9757d86ecdd81fcbdd2a2f9390 to your computer and use it in GitHub Desktop.
redsocks on macOS 10.11.6 - Homebrew build logs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for redsocks on macOS 10.11.6 | |
Build date: 2017-01-08 12:56:23 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HOMEBREW_VERSION: 1.1.6-41-gf7bccee21-dirty | |
ORIGIN: https://github.com/Homebrew/brew | |
HEAD: f7bccee2145547d21b2629cab8b5fddff3299bda | |
Last commit: 5 hours ago | |
Core tap ORIGIN: https://github.com/Homebrew/homebrew-core | |
Core tap HEAD: 4b974e3d1f74ae2eed5c3219e2a9f144f02fa269 | |
Core tap last commit: 13 minutes ago | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_REPOSITORY: /usr/local/Homebrew | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
HOMEBREW_BOTTLE_DOMAIN: https://homebrew.bintray.com | |
CPU: quad-core 64-bit haswell | |
Homebrew Ruby: 2.0.0-p648 | |
Clang: 8.0 build 800 | |
Git: 2.11.0 => /usr/local/bin/git | |
Perl: /usr/local/bin/perl => /usr/local/Cellar/perl/5.24.0_1/bin/perl | |
Python: /usr/local/bin/python => /usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/bin/python2.7 | |
Ruby: /Users/n/.rvm/rubies/ruby-2.4.0/bin/ruby | |
Java: 1.8.0_45 | |
macOS: 10.11.6-x86_64 | |
Xcode: 8.2.1 | |
CLT: 8.2.0.0.1.1480973914 | |
X11: 2.7.9 => /opt/X11 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please note that these warnings are just used to help the Homebrew maintainers | |
with debugging if you file an issue. If everything you use Homebrew for is | |
working fine: please don't worry and just ignore them. Thanks! | |
Warning: You have unlinked kegs in your Cellar | |
Leaving kegs unlinked can lead to build-trouble and cause brews that depend on | |
those kegs to fail to run properly once built. Run `brew link` on these: | |
cloog018 | |
[email protected] | |
Warning: You have uncommitted modifications to Homebrew | |
If this is a surprise to you, then you should stash these modifications. | |
Stashing returns Homebrew to a pristine state but can be undone | |
should you later need to do so for some reason. | |
cd /usr/local/Homebrew/Library && git stash && git clean -d -f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redsocks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2017-01-08 12:56:23 +0100 | |
make | |
mkdir -p gen | |
touch gen/.build | |
Unknown system, only generic firewall code is compiled | |
rm -f gen/version.c.tmp | |
echo '/* this file is auto-generated during build */' > gen/version.c.tmp | |
echo '#include "../version.h"' >> gen/version.c.tmp | |
echo 'const char* redsocks_version = ' >> gen/version.c.tmp | |
if [ -d .git ]; then \ | |
echo '"redsocks.git/'`git describe --tags`'"'; \ | |
if [ `git status --porcelain | grep -v -c '^??'` != 0 ]; then \ | |
echo '"-unclean"'; \ | |
fi \ | |
else \ | |
echo '"redsocks/0.4"'; \ | |
fi >> gen/version.c.tmp | |
echo ';' >> gen/version.c.tmp | |
mv -f gen/version.c.tmp gen/version.c | |
gcc -MM parser.c main.c redsocks.c log.c http-connect.c socks4.c socks5.c http-relay.c base.c base64.c md5.c http-auth.c utils.c redudp.c dnstc.c gen/version.c 2>/dev/null >.depend || \ | |
( \ | |
for I in base.h base64.h dnstc.h http-auth.h list.h log.h main.h md5.h parser.h redsocks.h redudp.h socks5.h utils.h version.h; do \ | |
export ${I//[-.]/_}_DEPS="`sed '/^\#[ \t]*include \?"\(.*\)".*/!d;s//\1/' $I`"; \ | |
done; \ | |
echo -n >.depend; \ | |
for SRC in parser.c main.c redsocks.c log.c http-connect.c socks4.c socks5.c http-relay.c base.c base64.c md5.c http-auth.c utils.c redudp.c dnstc.c gen/version.c; do \ | |
echo -n "${SRC%.c}.o: " >>.depend; \ | |
export SRC_DEPS="`sed '/\#[ \t]*include \?"\(.*\)".*/!d;s//\1/' $SRC | sort`"; \ | |
while true; do \ | |
export SRC_DEPS_OLD="$SRC_DEPS"; \ | |
export SRC_DEEP_DEPS=""; \ | |
for HDR in $SRC_DEPS; do \ | |
eval export SRC_DEEP_DEPS="\"$SRC_DEEP_DEPS \$${HDR//[-.]/_}_DEPS\""; \ | |
done; \ | |
export SRC_DEPS="`echo $SRC_DEPS $SRC_DEEP_DEPS | sed 's/ */\n/g' | sort -u`"; \ | |
test "$SRC_DEPS" = "$SRC_DEPS_OLD" && break; \ | |
done; \ | |
echo $SRC $SRC_DEPS >>.depend; \ | |
done; \ | |
) | |
clang -g -O2 -std=gnu99 -Wall -c -o parser.o parser.c | |
clang -g -O2 -std=gnu99 -Wall -c -o main.o main.c | |
clang -g -O2 -std=gnu99 -Wall -c -o redsocks.o redsocks.c | |
clang -g -O2 -std=gnu99 -Wall -c -o log.o log.c | |
clang -g -O2 -std=gnu99 -Wall -c -o http-connect.o http-connect.c | |
clang -g -O2 -std=gnu99 -Wall -c -o socks4.o socks4.c | |
clang -g -O2 -std=gnu99 -Wall -c -o socks5.o socks5.c | |
clang -g -O2 -std=gnu99 -Wall -c -o http-relay.o http-relay.c | |
clang -g -O2 -std=gnu99 -Wall -c -o base.o base.c | |
clang -g -O2 -std=gnu99 -Wall -c -o base64.o base64.c | |
clang -g -O2 -std=gnu99 -Wall -c -o md5.o md5.c | |
clang -g -O2 -std=gnu99 -Wall -c -o http-auth.o http-auth.c | |
clang -g -O2 -std=gnu99 -Wall -c -o utils.o utils.c | |
clang -g -O2 -std=gnu99 -Wall -c -o redudp.o redudp.c | |
clang -g -O2 -std=gnu99 -Wall -c -o dnstc.o dnstc.c | |
clang -g -O2 -std=gnu99 -Wall -c -o gen/version.o gen/version.c | |
clang -g -O2 -std=gnu99 -Wall -o redsocks parser.o main.o redsocks.o log.o http-connect.o socks4.o socks5.o http-relay.o base.o base64.o md5.o http-auth.o utils.o redudp.o dnstc.o gen/version.o -levent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcc called with: -MM parser.c main.c redsocks.c log.c http-connect.c socks4.c socks5.c http-relay.c base.c base64.c md5.c http-auth.c utils.c redudp.c dnstc.c gen/version.c | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib -L/usr/local/lib -L/System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries -Wl,-headerpad_max_install_names | |
superenv executed: clang -pipe -w -Os -march=native -MM parser.c main.c redsocks.c log.c http-connect.c socks4.c socks5.c http-relay.c base.c base64.c md5.c http-auth.c utils.c redudp.c dnstc.c gen/version.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib -L/usr/local/lib -L/System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries -Wl,-headerpad_max_install_names | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o redsocks.o redsocks.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o redsocks.o redsocks.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o main.o main.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o main.o main.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o parser.o parser.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o parser.o parser.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o log.o log.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o log.o log.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o http-connect.o http-connect.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o http-connect.o http-connect.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o socks4.o socks4.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o socks4.o socks4.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o socks5.o socks5.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o socks5.o socks5.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o http-relay.o http-relay.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o http-relay.o http-relay.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o base.o base.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o base.o base.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o base64.o base64.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o base64.o base64.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o md5.o md5.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o md5.o md5.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o http-auth.o http-auth.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o http-auth.o http-auth.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o utils.o utils.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o utils.o utils.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o redudp.o redudp.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o redudp.o redudp.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o dnstc.o dnstc.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o dnstc.o dnstc.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -c -o gen/version.o gen/version.c | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -c -o gen/version.o gen/version.c -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include | |
clang called with: -g -O2 -std=gnu99 -Wall -o redsocks parser.o main.o redsocks.o log.o http-connect.o socks4.o socks5.o http-relay.o base.o base64.o md5.o http-auth.o utils.o redudp.o dnstc.o gen/version.o -levent | |
superenv removed: -g -O2 -Wall | |
superenv added: -pipe -w -Os -march=native -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib -L/usr/local/lib -L/System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries -Wl,-headerpad_max_install_names | |
superenv executed: clang -pipe -w -Os -march=native -std=gnu99 -o redsocks parser.o main.o redsocks.o log.o http-connect.o socks4.o socks5.o http-relay.o base.o base64.o md5.o http-auth.o utils.o redudp.o dnstc.o gen/version.o -levent -isystem/usr/local/include -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib -L/usr/local/lib -L/System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries -Wl,-headerpad_max_install_names | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment