Update building external libs doc

This commit is contained in:
pokkst 2022-09-22 06:21:48 -05:00
parent af5076ce7d
commit fef87ef576
No known key found for this signature in database
GPG Key ID: 90C2ED85E67A50FF
2 changed files with 6 additions and 6 deletions

View File

@ -57,7 +57,7 @@ public class ReceiveBottomSheetDialog extends BottomSheetDialogFragment {
System.out.println("COINS::");
for(CoinsInfo coinsInfo : coins) {
if(!coinsInfo.isSpent()) {
System.out.println(coinsInfo.getKeyImage());
System.out.println(coinsInfo.getGlobalOutputIndex()+": "+coinsInfo.getKeyImage());
}
}
}

View File

@ -10,16 +10,16 @@
## Building:
1. Clone https://github.com/m2049r/monero repo.
1. Clone https://github.com/pokkst/monero repo.
2. Change repo to correct branch (example: `git checkout release-v0.17.1.9-monerujo`).
2. Change repo to correct branch (example: `git checkout release-v0.18.1.0-mynero`).
3. Update submodules: `git submodule update --init --force`.
4. Then go to folder with xmrwallet repo, then external-libs. Here you need to create symbol link to `monero` folder:
4. Then go to folder with monero-wallet repo, then external-libs. Here you need to create symbol link to `monero` folder:
Linux: `ln -s ~/monero ~/xmrwallet/external-libs/monero`
Linux: `ln -s ~/monero ~/monero-wallet/external-libs/monero`
Windows: `mklink /D "C:\Users\<USERNAME>\xmrwallet\external-libs\monero" "C:\Users\<USERNAME>\monero"`
Windows: `mklink /D "C:\Users\<USERNAME>\monero-wallet\external-libs\monero" "C:\Users\<USERNAME>\monero"`
5. Start Docker and then run `make` in `external-libs` folder. It will fail at end on Windows, but if `wallet2_api.h` exists in `include` folder, the build was successful.