Bitcoin Forum

Other => Beginners & Help => Topic started by: zmerol on March 11, 2018, 11:00:15 PM



Title: How to fix this error in compiling qt wallet
Post by: zmerol on March 11, 2018, 11:00:15 PM
Any one knows how to fix this error ?

http://i66.tinypic.com/2vll8uq.png


Title: Re: How to fix this error in compiling qt wallet
Post by: apimembership on March 12, 2018, 02:01:17 AM
Any one knows how to fix this error ?

http://i66.tinypic.com/2vll8uq.png
It looks openssl library headers are missing or you didnt provide right info to build process. First you have to build dependencies
https://github.com/bitcoin/bitcoin/tree/master/depends/packages
You can look at build instruction on https://github.com/bitcoin/bitcoin/tree/master/doc


Title: Re: How to fix this error in compiling qt wallet
Post by: zmerol on March 12, 2018, 09:45:38 AM
Any one knows how to fix this error ?

http://i66.tinypic.com/2vll8uq.png
It looks openssl library headers are missing or you didnt provide right info to build process. First you have to build dependencies
https://github.com/bitcoin/bitcoin/tree/master/depends/packages
You can look at build instruction on https://github.com/bitcoin/bitcoin/tree/master/doc
Thanks for the link , I already build all the dependencies but always error


Title: Re: How to fix this error in compiling qt wallet
Post by: apimembership on March 13, 2018, 12:52:39 AM
Any one knows how to fix this error ?

http://i66.tinypic.com/2vll8uq.png
It looks openssl library headers are missing or you didnt provide right info to build process. First you have to build dependencies
https://github.com/bitcoin/bitcoin/tree/master/depends/packages
You can look at build instruction on https://github.com/bitcoin/bitcoin/tree/master/doc
Thanks for the link , I already build all the dependencies but always error

in dependencies , they use 1.0.1k openssl but you are using 1.0.1e. jsut try with right version and put it under deps folder and change your -I"C:\deps...."  to -I"..\deps\youroepnsslfolder\include"


Title: Re: How to fix this error in compiling qt wallet
Post by: zmerol on March 13, 2018, 03:13:12 AM
Any one knows how to fix this error ?

http://i66.tinypic.com/2vll8uq.png
It looks openssl library headers are missing or you didnt provide right info to build process. First you have to build dependencies
https://github.com/bitcoin/bitcoin/tree/master/depends/packages
You can look at build instruction on https://github.com/bitcoin/bitcoin/tree/master/doc
Thanks for the link , I already build all the dependencies but always error

in dependencies , they use 1.0.1k openssl but you are using 1.0.1e. jsut try with right version and put it under deps folder and change your -I"C:\deps...."  to -I"..\deps\youroepnsslfolder\include"
Already try the openssl v 1.0.1k but still error


Title: Re: How to fix this error in compiling qt wallet
Post by: zmerol on March 13, 2018, 03:59:51 AM
Thanks it works  ;D


Title: Re: How to fix this error in compiling qt wallet
Post by: apimembership on March 14, 2018, 10:04:45 PM
Thanks it works  ;D

No problem.