Search found 2 matches

by thecode
Sat Mar 09, 2019 4:20 pm
Forum: AES Crypt
Topic: Compiling AesCrypt on Windows 10 using MinGW
Replies: 2
Views: 7758

Re: Compiling AesCrypt on Windows 10 using MinGW

Thank you for your fast reply. You was right the worng thing was that I was trying to compile windows source code. However, Linux code cannot compile as password.c requires termios.c and langinfo.c and the first is not supported in MinGW as it is not POSIX complaint, the latter can be found by third...
by thecode
Sat Mar 09, 2019 10:00 am
Forum: AES Crypt
Topic: Compiling AesCrypt on Windows 10 using MinGW
Replies: 2
Views: 7758

Compiling AesCrypt on Windows 10 using MinGW

Hello to all, I am trying to compile aescrypt (just console version) in Windows. I produced the *.o files: aes.o aescrypt.o password.o getopt.o password.o sha256.o and after I tried to compile to target including all these object files but I receive: c:\MinGW\bin>gcc -o target.exe AESCrypt_source_v3...