From the program output and strace it looks somewhat like you plugged some optimized kernels into ccminer, added a dev fee, and finally compiled and obfuscated the whole thing.
But you are technically not allowed to do that. ccminer is licensed under GPL. All modifications have to also be open source.
Sorry if Im mistaken and you actually built the whole pool protocol handling and all yourself. The algo speedup is certainly nice and impressive. Its just that everyone whos dabbled in closed source miner development knows that the kind of most annoying part is building the whole shell around the actual GPU code. Building on top of a GPL-licensed open source miner is a cheap and not actually legal way around that.
Getting this error on a couple machines one Ubuntu 16.04 the other 18.04
./t-rex: /usr/lib/x86_64-linux-gnu/libcurl.so.4: version `CURL_OPENSSL_3' not found (required by ./t-rex)
If anyone cares, on Arch you get around this problem by doing
export LD_PRELOAD=libcurl.so.3
with installed libcurl-compat. How did I know? Ran into the same issue with ccminer already.