AROS World Exec
Development => AROS Software Development => Topic started by: AMIGASYSTEM on June 03, 2023, 03:15:59 AM
-
I have successfully compiled the MD5SUM program, a small utility that allows you to build checksums on text or binary files, using the "MD5 Message Digest Algorithm."
On AROS One x86 with Dopus4 it will also be possible to get MD5 values to a group of files with a single click, see screenshot
If in the compilation I run GCC with the parameter "Wall" (to check for errors) , i get an error, what is it? (see screenshot)
(https://ae.amigalife.org/index.php?action=dlattach;topic=1134.0;attach=5017;image)
-
Did you compile this: http://aminet.net/package/util/crypt/MD5SUM ?
Change
void
main(int argc, char **argv)
to
int
main(int argc, char **argv)
If the compiler complains about a missing return value add "return 0;" to the end of the main function.
-
Did you compile this: http://aminet.net/package/util/crypt/MD5SUM ?
Change
void
main(int argc, char **argv)
to
int
main(int argc, char **argv)
Thanks Mazze, yes it was MD5SUM posted on Aminet, now with your advice, the compilation happened without errors with GCC installed on AROS One x86.
Posteṛ l'archivio MD5SUM e i sorgenti corretti su Aros Archive
-
Improved the command on Dopus4, now you can give a Name to the "Data" file that contains the "MD5" values of one or more files, the file is saved on the second window (any volume you choose)
There is also a "sub-button" to generate "MD5" values for "Binary" files (parameter -b)
(https://ae.amigalife.org/index.php?action=dlattach;topic=1134.0;attach=5019;image)