radareorg / radare2

UNIX-like reverse engineering framework and command-line toolset
https://www.radare.org/
GNU Lesser General Public License v3.0
20.37k stars 2.97k forks source link

Command parsing doesn't correctly ignore text after hashtag #17776

Closed dyc3 closed 2 years ago

dyc3 commented 3 years ago

Work environment

Questions Answers
OS/arch/bits (mandatory) Ubuntu x86 64
File format of the file you reverse (mandatory) N/A
Architecture/bits of the file (mandatory) N/A
r2 -v full output, not truncated (mandatory) radare2 4.6.0-git 25157 @ linux-x86-64 git.4.4.0-805-g6c89716d4

commit: 6c89716d44cc6198d9ac1dcc632d4e1b71e6b714 build: 2020-10-10__22:51:30

Expected behavior

Print help text

Actual behavior

Activates visual mode

Steps to reproduce the behavior

Note that any command can take the place of ?

Additional Logs, screenshots, source-code, configuration dump, ...

This is also the cause of some projects not loading. Projects contain Cs commands, followed by a comment and the string as plain text. If any part of the string matches the regex /;.+\"/gi, then it will try to execute the text after the ; as a command.

trufae commented 3 years ago

This character is used for comments. So it ignores everything until the end of the line. Did you tried with the newshell?

dyc3 commented 3 years ago

The issue does not occur with cfg.newshell=true.

trufae commented 3 years ago

i think the issue is in newshell. after # NOTHING should be parsed

XVilka commented 3 years ago

Since the switch to newshell solves this problem and the complete switch is imminent, I propose to close this issue.

trufae commented 3 years ago

Please re-read my answer: Its the newshell who is not behaving properly. The oldshell works as expected

XVilka commented 3 years ago

@trufae I just retried it with e cfg.newshell=true that I have by default for a month and ?#;v" returns exactly the same result as ?. Moreover, if I set e cfg.newshell=false and run ?#;v" it starts visual panels. So it's the old shell that doesn't work properly.

wargio commented 3 years ago

i think the new shell is correct.

trufae commented 3 years ago

uhm im trying and i dont see oldshell or newshell executing anything after ; so maybe i missunderstood the problem here. because i dont get visual panels with or wihout the shell thing set

dyc3 commented 3 years ago

That's weird. I'm unable to verify if it's been fixed on master already because make is failing for some reason.

trufae commented 3 years ago

Which error? r2 builds fine here as well as in all the CI using meson and make

dyc3 commented 3 years ago
Output from `make` ``` make -C shlr sdbs make[1]: Entering directory '/home/carson/Documents/code/other/radare2/shlr' make sdb-host HOST_CC=gcc CC=gcc make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr' >>>>>>>> HOST SDB >>>>>>>> make -C sdb clean ; rm -f sdb/src/*.o sdb/src/sdb_version.h make[3]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb' rm -f src/sdb_version.h make -C src clean make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' rm -rf cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o cdb.o.o buffer.o.o cdb_make.o.o ls.o.o sdbht.o.o ht_uu.o.o sdb.o.o num.o.o base64.o.o match.o.o json.o.o ns.o.o lock.o.o util.o.o disk.o.o query.o.o array.o.o fmt.o.o journal.o.o dict.o.o ht_pp.o.o ht_up.o.o set.o.o diff.o.o main.o libsdb.a a.out sdb sdb.dSYM rm -rf *.d *._d json/*.d json/*._d *.sdb *.db *.so *.so.* make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make -C memcache clean make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/memcache' make[4]: Nothing to be done for 'clean'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/memcache' make -C test clean make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/test' make[4]: Nothing to be done for 'clean'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/test' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb' make -C sdb/src "CC=gcc" LDFLAGS='' CPPFLAGS='' CFLAGS=' -fPIC' bin make[3]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make -C .. src/sdb_version.h make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb' echo '#define SDB_VERSION "1.5.1-git"' > src/sdb_version.h make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb' make libsdb.a main.o make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o gcc -c -fPIC -o main.o main.c make[5]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' gcc -c -fPIC -o cdb.o cdb.c gcc -c -fPIC -o buffer.o buffer.c gcc -c -fPIC -o cdb_make.o cdb_make.c gcc -c -fPIC -o ls.o ls.c gcc -c -fPIC -o sdbht.o sdbht.c gcc -c -fPIC -o ht_uu.o ht_uu.c gcc -c -fPIC -o sdb.o sdb.c gcc -c -fPIC -o num.o num.c gcc -c -fPIC -o base64.o base64.c gcc -c -fPIC -o match.o match.c gcc -c -fPIC -o json.o json.c gcc -c -fPIC -o ns.o ns.c gcc -c -fPIC -o lock.o lock.c gcc -c -fPIC -o util.o util.c gcc -c -fPIC -o disk.o disk.c gcc -c -fPIC -o query.o query.c gcc -c -fPIC -o array.o array.c gcc -c -fPIC -o fmt.o fmt.c gcc -c -fPIC -o journal.o journal.c gcc -c -fPIC -o dict.o dict.c gcc -c -fPIC -o ht_pp.o ht_pp.c gcc -c -fPIC -o ht_up.o ht_up.c gcc -c -fPIC -o set.o set.c gcc -c -fPIC -o diff.o diff.c make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' rm -f libsdb.a ar q libsdb.a cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o ar: creating libsdb.a ranlib libsdb.a make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' gcc -fPIC -o sdb main.o cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' cp -f sdb/src/sdb sdb/src/.sdb cp -f sdb/src/sdb sdb/sdb file sdb/sdb sdb/sdb: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 3.2.0, BuildID[sha1]=cdd5ca086b0bffc0593d25d49e587c915d8154cd, not stripped make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr' make sdb-target make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr' >>>>>>>>>> TARGET SDB >>>>>>>>>> make -C sdb clean ; rm -f sdb/src/*.o sdb/src/sdb_version.h make[3]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb' rm -f src/sdb_version.h make -C src clean make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' rm -rf cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o cdb.o.o buffer.o.o cdb_make.o.o ls.o.o sdbht.o.o ht_uu.o.o sdb.o.o num.o.o base64.o.o match.o.o json.o.o ns.o.o lock.o.o util.o.o disk.o.o query.o.o array.o.o fmt.o.o journal.o.o dict.o.o ht_pp.o.o ht_up.o.o set.o.o diff.o.o main.o libsdb.a a.out sdb sdb.dSYM rm -rf *.d *._d json/*.d json/*._d *.sdb *.db *.so *.so.* make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make -C memcache clean make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/memcache' make[4]: Nothing to be done for 'clean'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/memcache' make -C test clean make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/test' make[4]: Nothing to be done for 'clean'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/test' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb' make -C sdb/src sdb_version.h make[3]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make -C .. src/sdb_version.h make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb' echo '#define SDB_VERSION "1.5.1-git"' > src/sdb_version.h make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make -C sdb/src ARCH=xxx RANLIB="ranlib" CFLAGS_SHARED="-fPIC" \ CC="ccache gcc" AR="ar" ARCH=undefined CFLAGS=' -MD -fPIC -g -Wall -D__UNIX__=1 -MD' LDFLAGS='-Wl,--as-needed -Wl,--as-needed' libsdb.a make[3]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o cdb.o cdb.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o buffer.o buffer.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o cdb_make.o cdb_make.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o ls.o ls.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o sdbht.o sdbht.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o ht_uu.o ht_uu.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o sdb.o sdb.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o num.o num.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o base64.o base64.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o match.o match.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o json.o json.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o ns.o ns.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o lock.o lock.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o util.o util.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o disk.o disk.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o query.o query.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o array.o array.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o fmt.o fmt.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o journal.o journal.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o dict.o dict.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o ht_pp.o ht_pp.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o ht_up.o ht_up.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o set.o set.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -MD -fPIC -o diff.o diff.c make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' rm -f libsdb.a ar q libsdb.a cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o ar: creating libsdb.a ranlib libsdb.a make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' ranlib sdb/src/libsdb.a make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr' make[1]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr' make -C shlr/zip make[1]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/zip' make[1]: Nothing to be done for 'all'. make[1]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/zip' make -C libr/util make[1]: Entering directory '/home/carson/Documents/code/other/radare2/libr/util' cp -f ../../shlr/spp//config.def.h ../../shlr/spp//config.h make spp_build make[2]: Entering directory '/home/carson/Documents/code/other/radare2/libr/util' make[2]: Nothing to be done for 'spp_build'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/util' make all2 make[2]: Entering directory '/home/carson/Documents/code/other/radare2/libr/util' ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o mem.o mem.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o unum.o unum.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o str.o str.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o hex.o hex.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o file.o file.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o range.o range.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o prof.o prof.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o cache.o cache.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o sys.o sys.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o buf.o buf.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o w32-sys.o w32-sys.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o ubase64.o ubase64.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o base91.o base91.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o list.o list.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o chmod.o chmod.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o graph.o graph.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o event.o event.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o alloc.o alloc.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o donut.o donut.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o print_code.o print_code.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o uleb128.o uleb128.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o sandbox.o sandbox.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o calc.o calc.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o thread.o thread.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o strpool.o strpool.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o bitmap.o bitmap.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o time.o time.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o format.o format.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o pie.o pie.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o print.o print.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o utype.o utype.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o seven.o seven.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o randomart.o randomart.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o zip.o zip.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o debruijn.o debruijn.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o log.o log.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o getopt.o getopt.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o table.o table.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o utf8.o utf8.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o utf16.o utf16.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o utf32.o utf32.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o strbuf.o strbuf.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o lib.o lib.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o name.o name.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o spaces.o spaces.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o signal.o signal.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o syscmd.o syscmd.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o udiff.o udiff.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o bdiff.o bdiff.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o stack.o stack.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o queue.o queue.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o tree.o tree.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o idpool.o idpool.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o assert.o assert.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o punycode.o punycode.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o pkcs7.o pkcs7.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o x509.o x509.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o asn1.o asn1.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o astr.o astr.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o json_parser.o json_parser.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o json_indent.o json_indent.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o skiplist.o skiplist.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o pj.o pj.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o rbtree.o rbtree.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o intervaltree.o intervaltree.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o qrcode.o qrcode.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o str_trim.o str_trim.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o ascii_table.o ascii_table.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o protobuf.o protobuf.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o graph_drawable.o graph_drawable.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o annotated_code.o annotated_code.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/..//shlr -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I../../shlr/sdb/src/ -DHAVE_FORK=1 -DUSE_R2=1 -I../../shlr -o big.o big.c "ccache gcc -Wl,--as-needed -lm -lpthread -ldl -lm -fvisibility=hidden -shared -o libr_util.so -Wl,-soname=libr_util.so binheap.o mem.o unum.o str.o hex.o file.o range.o prof.o cache.o sys.o buf.o w32-sys.o ubase64.o base85.o base91.o list.o flist.o chmod.o graph.o event.o alloc.o donut.o print_code.o regex/regcomp.o regex/regerror.o regex/regexec.o uleb128.o sandbox.o calc.o thread.o thread_sem.o thread_lock.o thread_cond.o strpool.o bitmap.o time.o format.o pie.o print.o utype.o seven.o randomart.o zip.o debruijn.o log.o getopt.o table.o utf8.o utf16.o utf32.o strbuf.o lib.o name.o spaces.o signal.o syscmd.o udiff.o bdiff.o stack.o queue.o tree.o idpool.o assert.o punycode.o pkcs7.o x509.o asn1.o astr.o json_parser.o json_indent.o skiplist.o pj.o rbtree.o intervaltree.o qrcode.o vector.o str_constpool.o str_trim.o ascii_table.o protobuf.o graph_drawable.o annotated_code.o big.o ../../shlr/sdb/src/buffer.o ../../shlr/sdb/src/cdb.o ../../shlr/sdb/src/set.o ../../shlr/sdb/src/cdb_make.o ../../shlr/sdb/src/ht_uu.o ../../shlr/sdb/src/ht_up.o ../../shlr/sdb/src/ht_pp.o ../../shlr/sdb/src/sdbht.o ../../shlr/sdb/src/json.o ../../shlr/sdb/src/lock.o ../../shlr/sdb/src/ls.o ../../shlr/sdb/src/ns.o ../../shlr/sdb/src/query.o ../../shlr/sdb/src/sdb.o ../../shlr/sdb/src/base64.o ../../shlr/sdb/src/disk.o ../../shlr/sdb/src/dict.o ../../shlr/sdb/src/array.o ../../shlr/sdb/src/fmt.o ../../shlr/sdb/src/match.o ../../shlr/sdb/src/num.o ../../shlr/sdb/src/util.o ../../shlr/sdb/src/journal.o ../../shlr/sdb/src/diff.o ../../shlr/spp/spp.o -lm /home/carson/Documents/code/other/radare2/libr/../shlr/zip/librz.a -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -lm -lpthread -ldl -lm -fvisibility=hidden" make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/util' make[1]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/util' make -C libr/socket make[1]: Entering directory '/home/carson/Documents/code/other/radare2/libr/socket' ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o socket.o socket.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o socket_proc.o socket_proc.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o socket_http.o socket_http.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o socket_http_server.o socket_http_server.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o socket_rap_server.o socket_rap_server.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o socket_rap_client.o socket_rap_client.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o run.o run.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o r2pipe.o r2pipe.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o socket_serial.o socket_serial.c "ccache gcc -Wl,--as-needed -lutil -fvisibility=hidden -shared -o libr_socket.so -Wl,-soname=libr_socket.so socket.o socket_proc.o socket_http.o socket_http_server.o socket_rap_server.o socket_rap_client.o run.o r2pipe.o socket_serial.o -L/home/carson/Documents/code/other/radare2/libr/util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -lutil -fvisibility=hidden" make[1]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/socket' make -C shlr make[1]: Entering directory '/home/carson/Documents/code/other/radare2/shlr' make -C winkd all "/bin/sh" capstone.sh "https://github.com/aquynh/capstone.git" "v4" "2edae851d9fee511a57d4da32d5acecedd95d7ed" "" "" make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/winkd' make -C bochs all Run 'make CS_COMMIT_ARCHIVE=1' to download capstone with wget/curl instead of git make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/bochs' [capstone] Nothing to do cd capstone && CFLAGS="-Dmips=mips -MD -fPIC -g -Wall -D__UNIX__=1 -MD" LDFLAGS="-Wl,--as-needed -Wl,--as-needed" \ make CC="ccache gcc" AR_EXT=a IS_CYGWIN=0 CAPSTONE_STATIC=yes CAPSTONE_SHARED=no \ RANLIB="ranlib" LIBARCHS="" AR="ar" IS_MINGW=0 libcapstone.a make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/capstone' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/bochs' make[2]: 'libcapstone.a' is up to date. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/capstone' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/winkd' make -C sdb make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb' [ -d pkgconfig ] && make -C pkgconfig || true make -C src make[3]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make libsdb.a main.o make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o main.o main.c make[5]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make[5]: 'cdb.o' is up to date. make[5]: 'buffer.o' is up to date. make[5]: 'cdb_make.o' is up to date. make[5]: 'ls.o' is up to date. make[5]: 'sdbht.o' is up to date. make[5]: 'ht_uu.o' is up to date. make[5]: 'sdb.o' is up to date. make[5]: 'num.o' is up to date. make[5]: 'base64.o' is up to date. make[5]: 'match.o' is up to date. make[5]: 'json.o' is up to date. make[5]: 'ns.o' is up to date. make[5]: 'lock.o' is up to date. make[5]: 'util.o' is up to date. make[5]: 'disk.o' is up to date. make[5]: 'query.o' is up to date. make[5]: 'array.o' is up to date. make[5]: 'fmt.o' is up to date. make[5]: 'journal.o' is up to date. make[5]: 'dict.o' is up to date. make[5]: 'ht_pp.o' is up to date. make[5]: 'ht_up.o' is up to date. make[5]: 'set.o' is up to date. make[5]: 'diff.o' is up to date. make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' rm -f libsdb.a ar q libsdb.a cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o ar: creating libsdb.a ranlib libsdb.a make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' ccache gcc -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o sdb main.o cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o make static make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make libsdb.a make[5]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o make[6]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make[6]: 'cdb.o' is up to date. make[6]: 'buffer.o' is up to date. make[6]: 'cdb_make.o' is up to date. make[6]: 'ls.o' is up to date. make[6]: 'sdbht.o' is up to date. make[6]: 'ht_uu.o' is up to date. make[6]: 'sdb.o' is up to date. make[6]: 'num.o' is up to date. make[6]: 'base64.o' is up to date. make[6]: 'match.o' is up to date. make[6]: 'json.o' is up to date. make[6]: 'ns.o' is up to date. make[6]: 'lock.o' is up to date. make[6]: 'util.o' is up to date. make[6]: 'disk.o' is up to date. make[6]: 'query.o' is up to date. make[6]: 'array.o' is up to date. make[6]: 'fmt.o' is up to date. make[6]: 'journal.o' is up to date. make[6]: 'dict.o' is up to date. make[6]: 'ht_pp.o' is up to date. make[6]: 'ht_up.o' is up to date. make[6]: 'set.o' is up to date. make[6]: 'diff.o' is up to date. make[6]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' rm -f libsdb.a ar q libsdb.a cdb.o buffer.o cdb_make.o ls.o sdbht.o ht_uu.o sdb.o num.o base64.o match.o json.o ns.o lock.o util.o disk.o query.o array.o fmt.o journal.o dict.o ht_pp.o ht_up.o set.o diff.o ar: creating libsdb.a ranlib libsdb.a make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make shared make[4]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make libsdb.so.1.5.1-git make[5]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make cdb.o.o buffer.o.o cdb_make.o.o ls.o.o sdbht.o.o ht_uu.o.o sdb.o.o num.o.o base64.o.o match.o.o json.o.o ns.o.o lock.o.o util.o.o disk.o.o query.o.o array.o.o fmt.o.o journal.o.o dict.o.o ht_pp.o.o ht_up.o.o set.o.o diff.o.o make[6]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o buffer.o.o buffer.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o cdb.o.o cdb.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o sdbht.o.o sdbht.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o ls.o.o ls.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o ns.o.o ns.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o base64.o.o base64.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o json.o.o json.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o util.o.o util.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o cdb_make.o.o cdb_make.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o query.o.o query.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o sdb.o.o sdb.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o match.o.o match.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o ht_up.o.o ht_up.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o ht_uu.o.o ht_uu.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o diff.o.o diff.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o num.o.o num.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o set.o.o set.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o journal.o.o journal.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o ht_pp.o.o ht_pp.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o array.o.o array.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o fmt.o.o fmt.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o lock.o.o lock.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o disk.o.o disk.c ccache gcc -c -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -o dict.o.o dict.c make[6]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' ln -fs libsdb.so.1.5.1-git libsdb.so ccache gcc -std=gnu99 -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -Wall -Wsign-compare -g -Wall -O0 -MMD -fPIC -g -shared -Wl,-soname,libsdb.so.0 -o libsdb.so.1.5.1-git cdb.o.o buffer.o.o cdb_make.o.o ls.o.o sdbht.o.o ht_uu.o.o sdb.o.o num.o.o base64.o.o match.o.o json.o.o ns.o.o lock.o.o util.o.o disk.o.o query.o.o array.o.o fmt.o.o journal.o.o dict.o.o ht_pp.o.o ht_up.o.o set.o.o diff.o.o make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb/src' make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/sdb' make -C zip make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/zip' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/zip' make -C java make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/java' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/java' make -C tcc make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/tcc' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/tcc' make -C mpc make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/mpc' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/mpc' make -C yxml make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/yxml' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/yxml' make -C gdb make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/gdb' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/gdb' make -C qnx make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/qnx' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/qnx' make -C ar make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/ar' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/ar' make -C grub make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/grub' make libgrubfs.a make[3]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/grub' make[3]: 'libgrubfs.a' is up to date. make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/grub' make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/grub' make -C ptrace-wrap make[2]: Entering directory '/home/carson/Documents/code/other/radare2/shlr/ptrace-wrap' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr/ptrace-wrap' make[1]: Leaving directory '/home/carson/Documents/code/other/radare2/shlr' make -C libr make[1]: Entering directory '/home/carson/Documents/code/other/radare2/libr' make util make[2]: Entering directory '/home/carson/Documents/code/other/radare2/libr' DIR util make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/util' cp -f ../../shlr/spp//config.def.h ../../shlr/spp//config.h make spp_build make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/util' make[4]: Nothing to be done for 'spp_build'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/util' make all2 make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/util' make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/util' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/util' make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/libr' make socket hash reg cons magic bp search config make[2]: Entering directory '/home/carson/Documents/code/other/radare2/libr' DIR socket DIR hash make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/socket' DIR reg make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/hash' DIR cons make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/reg' DIR magic make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/cons' DIR bp make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/magic' DIR search make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/bp' DIR config make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/search' make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/config' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/socket' ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o hash.o hash.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I. -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o apprentice.o apprentice.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o reg.o reg.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o arena.o arena.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o rvalue.o rvalue.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o rcond.o rcond.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o double.o double.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o profile.o profile.c "ccache gcc -Wl,--as-needed -lm -fvisibility=hidden -shared -o libr_hash.so -Wl,-soname=libr_hash.so state.o hash.o hamdist.o crca.o fletcher.o entropy.o hcalc.o adler32.o luhn.o md4.o md5.o sha1.o sha2.o xxhash.o -lm -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -lm -fvisibility=hidden" ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o config.o config.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -g -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o search.o search.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -g -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o bytepat.o bytepat.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o callback.o callback.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -g -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o strings.o strings.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o hold.o hold.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -g -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o aes-find.o aes-find.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -g -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o privkey-find.o privkey-find.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o cons.o cons.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -g -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o regexp.o regexp.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o cpipe.o cpipe.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -g -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o keyword.o keyword.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o bp.o bp.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o output.o output.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o grep.o grep.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o bp_watch.o bp_watch.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o less.o less.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o bp_io.o bp_io.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o more.o more.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o bp_plugin.o bp_plugin.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o bp_traptrace.o bp_traptrace.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o pager.o pager.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/bp_arm.o p/bp_arm.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o cutf8.o cutf8.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/bp_bf.o p/bp_bf.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o line.o line.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/bp_mips.o p/bp_mips.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o hud.o hud.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/bp_ppc.o p/bp_ppc.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o rgb.o rgb.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/bp_x86.o p/bp_x86.c "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_magic.so -Wl,-soname=libr_magic.so apprentice.o ascmagic.o fsmagic.o funcs.o is_tar.o magic.o softmagic.o -L/home/carson/Documents/code/other/radare2/libr/util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o input.o input.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o pal.o pal.c "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_reg.so -Wl,-soname=libr_reg.so reg.o arena.o rvalue.o rcond.o double.o profile.o -L/home/carson/Documents/code/other/radare2/libr/util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o editor.o editor.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o 2048.o 2048.c "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_search.so -Wl,-soname=libr_search.so search.o bytepat.o strings.o aes-find.o privkey-find.o regexp.o keyword.o -L/home/carson/Documents/code/other/radare2/libr/util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o html.o html.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o canvas.o canvas.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o canvas_line.o canvas_line.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o stiv.o stiv.c "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_config.so -Wl,-soname=libr_config.so config.o callback.o hold.o -L/home/carson/Documents/code/other/radare2/libr/util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/hash' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/search' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/reg' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/magic' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/config' "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_cons.so -Wl,-soname=libr_cons.so cons.o cpipe.o output.o grep.o less.o more.o pager.o cutf8.o line.o hud.o rgb.o input.o pal.o editor.o 2048.o html.o canvas.o canvas_line.o stiv.o -L/home/carson/Documents/code/other/radare2/libr/util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_bp.so -Wl,-soname=libr_bp.so bp.o bp_watch.o bp_io.o bp_plugin.o bp_traptrace.o p/bp_arm.o p/bp_bf.o p/bp_mips.o p/bp_ppc.o p/bp_x86.o -L/home/carson/Documents/code/other/radare2/libr/util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/cons' make -C p make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/bp/p' make[4]: Nothing to be done for 'all'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/bp/p' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/bp' make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/libr' make syscall lang crypto flag make[2]: Entering directory '/home/carson/Documents/code/other/radare2/libr' DIR syscall DIR lang make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/syscall' DIR crypto make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/lang' DIR flag make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/crypto' make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/flag' make -C d ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -I/home/carson/Documents/code/other/radare2/libr/../shlr/spp -o lang.o lang.c make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/syscall/d' ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -D__UNIX__ -Wall -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o syscall.o syscall.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -D__UNIX__ -Wall -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o ioports.o ioports.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o flag.o flag.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o zones.o zones.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o tags.o tags.c make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/crypto' "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_lang.so -Wl,-soname=libr_lang.so lang.o -L/home/carson/Documents/code/other/radare2/libr/util -L/home/carson/Documents/code/other/radare2/libr/cons -lr_util -lr_cons -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_flag.so -Wl,-soname=libr_flag.so flag.o zones.o tags.o -L/home/carson/Documents/code/other/radare2/libr/util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/flag' DIR r_lang/p make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/lang/p' make[4]: Nothing to be done for 'all'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/lang/p' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/lang' ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_aes.o p/crypto_aes.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_aes_algo.o p/crypto_aes_algo.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_aes_cbc.o p/crypto_aes_cbc.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_base64.o p/crypto_base64.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_base91.o p/crypto_base91.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_blowfish.o p/crypto_blowfish.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_cps2.o p/crypto_cps2.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_des.o p/crypto_des.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_punycode.o p/crypto_punycode.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_rc2.o p/crypto_rc2.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_rc4.o p/crypto_rc4.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_rc6.o p/crypto_rc6.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_rol.o p/crypto_rol.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_ror.o p/crypto_ror.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_rot.o p/crypto_rot.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_serpent.o p/crypto_serpent.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_serpent_algo.o p/crypto_serpent_algo.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/crypto_xor.o p/crypto_xor.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o crypto.o crypto.c ccache gcc -c -DR2_PLUGIN_INCORE -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o des.o des.c make[5]: Entering directory '/home/carson/Documents/code/other/radare2/libr/syscall/d' "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_crypto.so -Wl,-soname=libr_crypto.so p/crypto_aes.o p/crypto_aes_algo.o p/crypto_aes_cbc.o p/crypto_base64.o p/crypto_base91.o p/crypto_blowfish.o p/crypto_cps2.o p/crypto_des.o p/crypto_punycode.o p/crypto_rc2.o p/crypto_rc4.o p/crypto_rc6.o p/crypto_rol.o p/crypto_ror.o p/crypto_rot.o p/crypto_serpent.o p/crypto_serpent_algo.o p/crypto_xor.o crypto.o des.o -L/home/carson/Documents/code/other/radare2/libr/hash -L/home/carson/Documents/code/other/radare2/libr/util -L/home/carson/Documents/code/other/radare2/libr/util -L/home/carson/Documents/code/other/radare2/libr/util -lr_hash -lr_util -lr_util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/crypto' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/crypto' make[5]: Nothing to be done for 'compile'. make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/syscall/d' make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/syscall/d' "ccache gcc -Wl,--as-needed -fvisibility=hidden -shared -o libr_syscall.so -Wl,-soname=libr_syscall.so syscall.o ioports.o -L/home/carson/Documents/code/other/radare2/libr/util -lr_util -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -fvisibility=hidden" make[4]: 'libr_crypto.a' is up to date. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/crypto' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/crypto' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/syscall' cd p && make all make[5]: Entering directory '/home/carson/Documents/code/other/radare2/libr/crypto/p' make[5]: Nothing to be done for 'all'. make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/crypto/p' make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/crypto' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/crypto' make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/libr' make parse io make[2]: Entering directory '/home/carson/Documents/code/other/radare2/libr' DIR parse DIR io make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/parse' make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/io' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/parse' ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_ar.o p/io_ar.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_bfdbg.o p/io_bfdbg.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_bochs.o p/io_bochs.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_debug.o p/io_debug.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_default.o p/io_default.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_fd.o p/io_fd.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_gdb.o p/io_gdb.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_gprobe.o p/io_gprobe.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_gzip.o p/io_gzip.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_http.o p/io_http.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_ihex.o p/io_ihex.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_mach.o p/io_mach.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_malloc.o p/io_malloc.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_mmap.o p/io_mmap.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_null.o p/io_null.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_procpid.o p/io_procpid.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_ptrace.o p/io_ptrace.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_qnx.o p/io_qnx.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_r2k.o p/io_r2k.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_r2k_linux.o p/io_r2k_linux.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_r2pipe.o p/io_r2pipe.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_r2web.o p/io_r2web.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_rap.o p/io_rap.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_rbuf.o p/io_rbuf.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_self.o p/io_self.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_shm.o p/io_shm.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_sparse.o p/io_sparse.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_tcp.o p/io_tcp.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_w32.o p/io_w32.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_w32dbg.o p/io_w32dbg.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_winedbg.o p/io_winedbg.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_winkd.o p/io_winkd.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/io_zip.o p/io_zip.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o io.o io.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o io_plugin.o io_plugin.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o io_map.o io_map.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o io_desc.o io_desc.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o io_cache.o io_cache.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p_cache.o p_cache.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o undo.o undo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o ioutils.o ioutils.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -Wall -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/ar -I/home/carson/Documents/code/other/radare2/libr/../shlr/bochs/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/gdb/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/qnx/include/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/winkd -I../../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o io_fd.o io_fd.c make[4]: Nothing to be done for 'pre'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/parse' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/parse' "ccache gcc -Wl,--as-needed -lutil -lr_cons -lutil /home/carson/Documents/code/other/radare2/libr/../shlr/ar/libr_ar.a /home/carson/Documents/code/other/radare2/libr/../shlr/bochs/lib/libbochs.a -lutil /home/carson/Documents/code/other/radare2/libr/../shlr/gdb/lib/libgdbr.a -lutil /home/carson/Documents/code/other/radare2/libr/../shlr/qnx/lib/libqnxr.a -lutil -lutil /home/carson/Documents/code/other/radare2/libr/../shlr/winkd/libr_winkd.a -fvisibility=hidden -shared -o libr_io.so -Wl,-soname=libr_io.so p/io_ar.o p/io_bfdbg.o p/io_bochs.o p/io_debug.o p/io_default.o p/io_fd.o p/io_gdb.o p/io_gprobe.o p/io_gzip.o p/io_http.o p/io_ihex.o p/io_mach.o p/io_malloc.o p/io_mmap.o p/io_null.o p/io_procpid.o p/io_ptrace.o p/io_qnx.o p/io_r2k.o p/io_r2k_linux.o p/io_r2pipe.o p/io_r2web.o p/io_rap.o p/io_rbuf.o p/io_self.o p/io_shm.o p/io_sparse.o p/io_tcp.o p/io_w32.o p/io_w32dbg.o p/io_winedbg.o p/io_winkd.o p/io_zip.o io.o io_plugin.o io_map.o io_desc.o io_cache.o p_cache.o undo.o ioutils.o io_fd.o /home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/src/ptrace_wrap.o -L/home/carson/Documents/code/other/radare2/libr/util -L/home/carson/Documents/code/other/radare2/libr/socket -L/home/carson/Documents/code/other/radare2/libr/hash -L/home/carson/Documents/code/other/radare2/libr/cons -L/home/carson/Documents/code/other/radare2/libr/crypto -lr_util -lr_socket -lr_hash -lr_cons -lr_crypto -fPIC /home/carson/Documents/code/other/radare2/libr/..//shlr/ar/libr_ar.a /home/carson/Documents/code/other/radare2/libr/../shlr/zip/librz.a /home/carson/Documents/code/other/radare2/libr/..//shlr/gdb/lib/libgdbr.a /home/carson/Documents/code/other/radare2/libr/..//shlr/qnx/lib/libqnxr.a /home/carson/Documents/code/other/radare2/libr/..//shlr/ptrace-wrap/libptrace_wrap.a -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -lutil -lr_cons -lutil /home/carson/Documents/code/other/radare2/libr/../shlr/ar/libr_ar.a /home/carson/Documents/code/other/radare2/libr/../shlr/bochs/lib/libbochs.a -lutil /home/carson/Documents/code/other/radare2/libr/../shlr/gdb/lib/libgdbr.a -lutil /home/carson/Documents/code/other/radare2/libr/../shlr/qnx/lib/libqnxr.a -lutil -lutil /home/carson/Documents/code/other/radare2/libr/../shlr/winkd/libr_winkd.a -fvisibility=hidden" ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o parse.o parse.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o filter.o filter.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o code.o code.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o ctype.o ctype.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_6502_pseudo.o p/parse_6502_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_arm_pseudo.o p/parse_arm_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_att2intel.o p/parse_att2intel.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_avr_pseudo.o p/parse_avr_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_chip8_pseudo.o p/parse_chip8_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_dalvik_pseudo.o p/parse_dalvik_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_m68k_pseudo.o p/parse_m68k_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_mips_pseudo.o p/parse_mips_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_ppc_pseudo.o p/parse_ppc_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_sh_pseudo.o p/parse_sh_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_tms320_pseudo.o p/parse_tms320_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_v850_pseudo.o p/parse_v850_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_wasm_pseudo.o p/parse_wasm_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_x86_pseudo.o p/parse_x86_pseudo.c ccache gcc -c -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/ -I/home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/ -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -DR2_PLUGIN_INCORE -I/home/carson/Documents/code/other/radare2/libr/../shlr/zip/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/parse_z80_pseudo.o p/parse_z80_pseudo.c make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/io/p' make[4]: Nothing to be done for 'all'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/io/p' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/io' "ccache gcc -Wl,--as-needed -L../../reg -lr_reg -L../../cons -lr_cons -L../../reg -lr_reg -L../../cons -lr_cons -fvisibility=hidden -shared -o libr_parse.so -Wl,-soname=libr_parse.so parse.o filter.o code.o ctype.o p/parse_6502_pseudo.o p/parse_arm_pseudo.o p/parse_att2intel.o p/parse_avr_pseudo.o p/parse_chip8_pseudo.o p/parse_dalvik_pseudo.o p/parse_m68k_pseudo.o p/parse_mips_pseudo.o p/parse_ppc_pseudo.o p/parse_sh_pseudo.o p/parse_tms320_pseudo.o p/parse_v850_pseudo.o p/parse_wasm_pseudo.o p/parse_x86_pseudo.o p/parse_z80_pseudo.o -L/home/carson/Documents/code/other/radare2/libr/flag -L/home/carson/Documents/code/other/radare2/libr/util -L/home/carson/Documents/code/other/radare2/libr/syscall -L/home/carson/Documents/code/other/radare2/libr/reg -L/home/carson/Documents/code/other/radare2/libr/cons -lr_flag -lr_util -lr_syscall -lr_reg -lr_cons -fPIC /home/carson/Documents/code/other/radare2/libr/..//shlr/tcc/libr_tcc.a /home/carson/Documents/code/other/radare2/libr/..//shlr/mpc/libmpc.a /home/carson/Documents/code/other/radare2/libr/../shlr/zip/librz.a /home/carson/Documents/code/other/radare2/libr/../shlr/zip/librz.a -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed -L../../reg -lr_reg -L../../cons -lr_cons -L../../reg -lr_reg -L../../cons -lr_cons -fvisibility=hidden" make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/parse' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/parse' make[4]: 'libr_parse.a' is up to date. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/parse' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/parse' make[5]: Entering directory '/home/carson/Documents/code/other/radare2/libr/parse/p' make[5]: Nothing to be done for 'all'. make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/parse/p' make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/parse' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/parse' make[4]: Nothing to be done for 'bins'. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/parse' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/parse' make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/libr' make fs asm bin make[2]: Entering directory '/home/carson/Documents/code/other/radare2/libr' DIR fs DIR asm make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/fs' DIR bin make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/asm' make[3]: Entering directory '/home/carson/Documents/code/other/radare2/libr/bin' Makefile:31: p/spc700.mk: No such file or directory Makefile:15: p/spc700.mk: No such file or directory for TARGET in pre plugins libr_fs.so libr_fs.a ; do make $TARGET ; done make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/fs' cd d && make make[5]: Entering directory '/home/carson/Documents/code/other/radare2/libr/fs/d' make[3]: *** No rule to make target 'p/spc700.mk'. Stop. make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/asm' Makefile:166: recipe for target 'asm' failed make[2]: *** [asm] Error 2 make[2]: *** Waiting for unfinished jobs.... make[3]: *** No rule to make target 'p/spc700.mk'. Stop. make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/bin' Makefile:166: recipe for target 'bin' failed make[2]: *** [bin] Error 2 SDB dospart make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/fs/d' make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/fs' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/fs' #cd p/grub && make libgrubfs.a CC="ccache gcc" cd p && make all make[5]: Entering directory '/home/carson/Documents/code/other/radare2/libr/fs/p' make[5]: Nothing to be done for 'all'. make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/fs/p' make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/fs' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/fs' #cd p/grub && make libgrubfs.a CC="ccache gcc" cd p && make all ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_ext2.o p/fs_ext2.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_fat.o p/fs_fat.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_fb.o p/fs_fb.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_hfs.o p/fs_hfs.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_hfsplus.o p/fs_hfsplus.c make[5]: Entering directory '/home/carson/Documents/code/other/radare2/libr/fs/p' ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_io.o p/fs_io.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_iso9660.o p/fs_iso9660.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_jfs.o p/fs_jfs.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_minix.o p/fs_minix.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_ntfs.o p/fs_ntfs.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_posix.o p/fs_posix.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_r2.o p/fs_r2.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_reiserfs.o p/fs_reiserfs.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_sfs.o p/fs_sfs.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_tar.o p/fs_tar.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_udf.o p/fs_udf.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_ufs.o p/fs_ufs.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o p/fs_xfs.o p/fs_xfs.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o fs.o fs.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o fs_file.o fs_file.c ccache gcc -c -DR2_PLUGIN_INCORE -Iarch/include -Iarch -MD -fPIC -g -Wall -D__UNIX__=1 -I/home/carson/Documents/code/other/radare2/libr/../shlr/grub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -Igrub/include -I/home/carson/Documents/code/other/radare2/libr -I/home/carson/Documents/code/other/radare2/libr/include -I/home/carson/Documents/code/other/radare2/libr/../shlr/sdb/src -fvisibility=hidden -o shell.o shell.c make[5]: Nothing to be done for 'all'. make[5]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/fs/p' "ccache gcc -Wl,--as-needed /home/carson/Documents/code/other/radare2/libr/../shlr/grub/libgrubfs.a -fvisibility=hidden -shared -o libr_fs.so -Wl,-soname=libr_fs.so p/fs_ext2.o p/fs_fat.o p/fs_fb.o p/fs_hfs.o p/fs_hfsplus.o p/fs_io.o p/fs_iso9660.o p/fs_jfs.o p/fs_minix.o p/fs_ntfs.o p/fs_posix.o p/fs_r2.o p/fs_reiserfs.o p/fs_sfs.o p/fs_tar.o p/fs_udf.o p/fs_ufs.o p/fs_xfs.o fs.o fs_file.o shell.o -L/home/carson/Documents/code/other/radare2/libr/util -L/home/carson/Documents/code/other/radare2/libr/io -L/home/carson/Documents/code/other/radare2/libr/socket -lr_util -lr_io -lr_socket -fPIC -fvisibility=hidden -Wl,-rpath /usr/local/lib -Wl,--as-needed /home/carson/Documents/code/other/radare2/libr/../shlr/grub/libgrubfs.a -fvisibility=hidden" make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/fs' make[4]: Entering directory '/home/carson/Documents/code/other/radare2/libr/fs' make[4]: 'libr_fs.a' is up to date. make[4]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/fs' make[3]: Leaving directory '/home/carson/Documents/code/other/radare2/libr/fs' make[2]: Leaving directory '/home/carson/Documents/code/other/radare2/libr' Makefile:22: recipe for target 'all' failed make[1]: *** [all] Error 2 make[1]: Leaving directory '/home/carson/Documents/code/other/radare2/libr' Makefile:56: recipe for target 'all' failed make: *** [all] Error 2 ```
trufae commented 3 years ago

the error is: make[3]: *** No rule to make target 'p/spc700.mk'. Stop.

this happens because you didnt executed ./configure after git pull. to avoid such errors i recommend to use the sys/install.sh

dyc3 commented 3 years ago

That worked, thanks.

I can confirm that this bug still occurs. Version info:

radare2 4.6.0-git 25157 @ linux-x86-64 git.4.4.0-792-g92b8de076
commit: 92b8de07643eaaa911fff93d11581b5f7301ecc6 build: 2020-10-15__14:18:35
trufae commented 3 years ago

Sorry i didnt saw the last quote char. the issue is fixed in a PR now