JayDDee / cpuminer-opt

Optimized multi algo CPU miner
Other
773 stars 545 forks source link

wiki needs update on Windows compile guide ( undefined reference to imp errors when compiling for Windows ) #279

Closed Paranoid-Dev closed 3 years ago

Paranoid-Dev commented 3 years ago
CFLAGS="-O3 -march=znver1 -Wall" ./configure --with-curl
CFLAGS="-O3 -maes -msse4.2 -Wall" ./configure --with-curl

in https://github.com/JayDDee/cpuminer-opt/wiki/Compiling-from-source#compile should be changed to

CFLAGS="-O3 -march=znver1 -Wall" ./configure --with-curl=$LOCAL_LIB/curl --with-crypto=$LOCAL_LIB/openssl --host=x86_64-w64-mingw32"

etc

or it will spout a lot of "undefined reference to imp" errors.

Found out after spending over an hour thinking I had compiled curl wrong and recompiling with different options :|

Also there should be orders to change the flag in build.sh before using it

JayDDee commented 3 years ago

Correct build.sh can't be used to cross compile, the configure command must be enterred manually. ./configure $CONFIGURE_ARGS should work if the variable was set in a previous step.

I've updated the Wiki, let me know if there are still issues.

Paranoid-Dev commented 3 years ago

https://github.com/JayDDee/cpuminer-opt/blob/master/winbuild-cross.sh I actually used this with a few edits to make it work for me to compile, when the way in the previous wiki didn't work So I don't think the updated wiki would have any issues now, since it's almost the same Thanks for updating so quickly, I'm sure it will help new people trying to compile