forked fromPascalCoinDev/PascalCoin
- Notifications
You must be signed in to change notification settings - Fork36
Delphi precompiled files part3#65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
SkybuckFlying wants to merge5 commits intoPascalCoin:masterChoose a base branch fromSkybuckFlying:DelphiPrecompiledFilesPart3
base:master
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Open
Delphi precompiled files part3#65
SkybuckFlying wants to merge5 commits intoPascalCoin:masterfromSkybuckFlying:DelphiPrecompiledFilesPart3
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This file contains hidden or 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
Three libraries replaced with git submodules:1. CryptoLib4Pascal2. HashLib4Pascal3. SimpleBaseLib4PascalThis will make updating these projects in the future easier andthus PascalCoin can benefit from any improvements or bug fixesmade to these libraries by simply fetching+merging or pullingin the changes.Delphi folder with pre-compiled files added:1. Less memory used by compiler.2. Faster compile times.3. Dynamically loading run-time libraries becomes possiblefor PascalCoin.
ProjectGroup added to help re-compile submodules for differentdelphi compiler versions.
pascalcoin_wallet_classic project modified to build with run-timepackages.Special Runtime Packages:1. Delphi 10.3 rtl270.bpl added2. Delphi 10.3 dbrtl270.bpl addedSpecial Runtime Libraries:3. libcryptoAll binaries are now stored in their own platform and config folder.Except the special runtime packages they are in their own platform onlyfolder.To use this project for debugging go to debugger settings and changethe environment variable override for path to where your pascalcoinfolders are. This has to be done for each platform and config untila solution is found to automate this.Executables added too these are release 5.7RandomHash slightly changed to try and solve weird build error. Whenthis happens build again to solve the weird build error. The bad packageweird build error happens after switching build targets in Delphi 10.3.
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading.Please reload this page.
Interesting experiment, makes building and debugger PascalCoin faster and easier, though Delphi 10.3 does it have it's strange bugs and environment limitation in debugger. So folders/path must be set manually per programmer/system.
Hopefully this technique can allow bigger applications/system to be build.
Runtime libraries could be re-used for miner or other tools/applications.
Perhaps different builds/targets can be added to build without runtime packages, for best of both worlds. I am pretty sure this can be done as well, and will be future work in part X-to-be-determined.
Build with Run-Time Packages
pascalcoin_wallet_classic project modified to build with run-time
packages.
Special Runtime Packages:
Special Runtime Libraries:
3. libcrypto
All binaries are now stored in their own platform and config folder.
Except the special runtime packages they are in their own platform only
folder.
To use this project for debugging go to debugger settings and change
the environment variable override for path to where your pascalcoin
folders are. This has to be done for each platform and config until
a solution is found to automate this.
Executables added too these are release 5.7
RandomHash slightly changed to try and solve weird build error. When
this happens build again to solve the weird build error. The bad package
weird build error happens after switching build targets in Delphi 10.3.