forked from albertobsd/keyhunt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bPtable create by secp256k1 first test
- Loading branch information
1 parent
d5072f1
commit f24c60c
Showing
19 changed files
with
3,920 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
default: | ||
gcc -O3 -c bloom/bloom.c -o bloom.o | ||
gcc -O3 -c sha256/sha256.c -o sha256.o | ||
g++ -O3 -c sha256/sha256.c -o sha256.o | ||
gcc -O3 -c base58/base58.c -o base58.o | ||
gcc -O3 -c rmd160/rmd160.c -o rmd160.o | ||
gcc -O3 -c sha3/sha3.c -o sha3.o | ||
gcc -O3 -c xxhash/xxhash.c -o xxhash.o | ||
gcc -O3 -c keyhunt.c -o keyhunt.o -lm | ||
gcc -o keyhunt keyhunt.o base58.o rmd160.o sha256.o bloom.o xxhash.o -lgmp -lm -lpthread | ||
gcc -O3 hexcharstoraw.c -o hexcharstoraw -lm | ||
g++ -O3 -c util.c -o util.o | ||
g++ -m64 -mssse3 -Wno-unused-result -Wno-write-strings -O2 -c secp256k1/Int.cpp -o Int.o | ||
g++ -m64 -mssse3 -Wno-unused-result -Wno-write-strings -O2 -c secp256k1/Point.cpp -o Point.o | ||
g++ -m64 -mssse3 -Wno-unused-result -Wno-write-strings -O2 -c secp256k1/SECP256K1.cpp -o SECP256K1.o | ||
g++ -m64 -mssse3 -Wno-unused-result -Wno-write-strings -O2 -c secp256k1/IntMod.cpp -o IntMod.o | ||
g++ -m64 -mssse3 -Wno-unused-result -Wno-write-strings -O2 -c secp256k1/Random.cpp -o Random.o | ||
g++ -m64 -mssse3 -Wno-unused-result -Wno-write-strings -O2 -c secp256k1/IntGroup.cpp -o IntGroup.o | ||
g++ -o keyhunt keyhunt.c base58.o rmd160.o sha256.o bloom.o xxhash.o util.o Int.o Point.o SECP256K1.o IntMod.o Random.o IntGroup.o -lgmp -lm -lpthread | ||
gcc -O3 hexcharstoraw.c -o hexcharstoraw util.o -lm | ||
gcc -o bPfile bPfile.c -lgmp -lm | ||
clean: | ||
rm -r *.o |
Oops, something went wrong.