Re: MySQL Connector 8.0 and Visual Studio 17
Posted by:
Luis Silva
Date: December 20, 2018 06:39AM
Hi Bartosz,
Just tested with VS2015 and VS2017 (Both Community).
Opened Developer Command Prompt and:
cmake -DWITH_SSL=wolf_3.13.0_path connector_path
cmake --build . (Or Open VS solution)
The glitch I got with these was just a missing cast, because of the use of WolfSSL, witch was not caught when we build the connector, because we mainly use OpenSSL.
But the fix is easy:
#if OPENSSL_VERSION_NUMBER > 0x10100000L
cn= ASN1_STRING_get0_data(cn_asn1);
#else
cn= (const unsigned char *)ASN1_STRING_data(cn_asn1);
#endif
Apart form this, all worked normally....
I think the issue could be with the environment from VS. I think you should use the Developer Command Prompt always, since it garantes all VS environment variables are set.
Hope it helps!
Cheers,
Luís Silva
Subject
Views
Written By
Posted
2284
October 24, 2018 01:42PM
1078
October 31, 2018 05:55AM
1186
November 02, 2018 11:37AM
800
November 06, 2018 04:01PM
1575
December 17, 2018 05:56AM
1046
December 18, 2018 04:42AM
2293
December 18, 2018 08:16PM
1202
December 19, 2018 03:51PM
Re: MySQL Connector 8.0 and Visual Studio 17
1168
December 20, 2018 06:39AM
1265
December 20, 2018 12:44PM
899
December 21, 2018 05:05AM
988
December 21, 2018 09:24AM
1171
December 23, 2018 05:34AM
1008
December 22, 2018 04:34PM
818
December 23, 2018 05:43AM
1083
December 23, 2018 08:57PM
823
December 27, 2018 09:03AM
813
December 27, 2018 07:49PM
803
December 28, 2018 05:55AM
933
December 29, 2018 02:23AM