Auto merge of #3172 - str4d:mingw32, r=str4d
Windows cross-compile support Usage on Debian / Ubuntu: > $ sudo apt install mingw-w64 > $ sudo update-alternatives --config x86_64-w64-mingw32-gcc > (configure to use POSIX variant) > $ sudo update-alternatives --config x86_64-w64-mingw32-g++ > (configure to use POSIX variant) > $ HOST=x86_64-w64-mingw32 ./zcutil/build.sh Closes #489.
This commit is contained in:
@@ -143,7 +143,7 @@ void test_tree(
|
||||
size_t path_index = convertVectorToInt(path.index);
|
||||
|
||||
commitment.bits.fill_with_bits(pb, bit_vector(commitment_bv));
|
||||
positions.fill_with_bits_of_ulong(pb, path_index);
|
||||
positions.fill_with_bits_of_uint64(pb, path_index);
|
||||
|
||||
authvars.generate_r1cs_witness(path_index, path.authentication_path);
|
||||
auth.generate_r1cs_witness();
|
||||
|
||||
@@ -99,7 +99,7 @@ TEST(paymentdisclosure, mainnet) {
|
||||
boost::filesystem::create_directories(pathTemp);
|
||||
mapArgs["-datadir"] = pathTemp.string();
|
||||
|
||||
std::cout << "Test payment disclosure database created in folder: " << pathTemp.native() << std::endl;
|
||||
std::cout << "Test payment disclosure database created in folder: " << pathTemp.string() << std::endl;
|
||||
|
||||
PaymentDisclosureDBTest mydb(pathTemp);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user