Daniel Black
added a comment - Installed,
not detected .
Was this a chocolatey install ? Can a CMakeOutput.txt/CMakeError.txt be saved from the build to work out its lack of detection.
https://gitlab.kitware.com/cmake/cmake/-/blob/master/Modules/FindCURL.cmake
Curl was installed using choco but libcurl was missing. I have now installed from Anel’s link manually a new version that comes with libcurl for the amd64-windows-packages builder. Not sure if there is any additional env var that needs to be set though.
Vlad Bogolin
added a comment - - edited Curl was installed using choco but libcurl was missing. I have now installed from Anel’s link manually a new version that comes with libcurl for the amd64-windows-packages builder. Not sure if there is any additional env var that needs to be set though.
Microsoft (R) COFF/PE Dumper Version 14.33.31630.0
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file storage\connect\Debug\ha_connect.dll
File Type: DLL
Image has the following dependencies:
ODBC32.dll
IPHLPAPI.DLL
libcurl-x64.dll
server.dll
KERNEL32.dll
USER32.dll
ole32.dll
OLEAUT32.dll
ADVAPI32.dll
WS2_32.dll
api-ms-win-crt-string-l1-1-0.dll
api-ms-win-crt-runtime-l1-1-0.dll
api-ms-win-crt-math-l1-1-0.dll
api-ms-win-crt-convert-l1-1-0.dll
api-ms-win-crt-stdio-l1-1-0.dll
api-ms-win-crt-filesystem-l1-1-0.dll
api-ms-win-crt-time-l1-1-0.dll
api-ms-win-crt-heap-l1-1-0.dll
api-ms-win-crt-environment-l1-1-0.dll
api-ms-win-crt-locale-l1-1-0.dll
api-ms-win-crt-utility-l1-1-0.dll
Summary
1000 .00cfg
A000 .data
6000 .idata
1A000 .pdata
DB000 .rdata
9000 .reloc
1000 .rsrc
230000 .text
1000 _RDATA
The test is now failing
worker[01] mysql-test-run: WARNING: Process [mysqld.1 - pid: 45092, winpid: 45092] died after mysql-test-run waited 0 seconds for C:/Users/Administrator/Desktop/anel/bld/mysql-test/var/1/run/mysqld.1.pid to be created.
connect.rest w1 [ fail ]
Test ended at 2024-02-07 13:32:55
CURRENT_TEST: connect.rest
The problem that now exists is that PATH variable should be set.
vladbogo can you please add the cmake variables to windows builders and append to env PATH variable C:\ProgramData\chocolatey\lib\curl\tools\curl-7.85.0-win64-mingw\bin ?
Anel Husakovic
added a comment - - edited I have tested built successfully on windows builder with libcurl by explicitly defining CURL_LIBRARY and CURL_INCLUDE_DIR , using following command:
# Load env varibles
>> "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64
>> cmake ../server -A x64 -DPLUGIN_ROCKSDB=NO -DPLUGIN_HASHICORP_KEY_MANAGEMENT=NO -DMYSQL_MAINTAINER_MODE=ERR -Wno-dev -DCURL_LIBRARY=C:/ProgramData/chocolatey/lib/curl/tools/curl-7.85.0-win64-mingw/lib/libcurl.dll.a -DCURL_INCLUDE_DIR=C:/ProgramData/chocolatey/lib/curl/tools/curl-7.85.0-win64-mingw/include
-- Found CURL: C:/ProgramData/chocolatey/lib/curl/tools/curl-7.85.0-win64-mingw/lib/libcurl.dll.a (found version "7.85.0")
The following features have been enabled:
* CONNECT_REST, Support for REST API in the CONNECT storage engine
>> # Only building connect module
>> cmake --build . --verbose --config Debug --target connect -- -m
Library libcurl is properly linked dynamically
>> dumpbin /dependents storage\connect\Debug\ha_connect.dll
Microsoft (R) COFF/PE Dumper Version 14.33.31630.0
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file storage\connect\Debug\ha_connect.dll
File Type: DLL
Image has the following dependencies:
ODBC32.dll
IPHLPAPI.DLL
libcurl-x64.dll
server.dll
KERNEL32.dll
USER32.dll
ole32.dll
OLEAUT32.dll
ADVAPI32.dll
WS2_32.dll
api-ms-win-crt-string-l1-1-0.dll
api-ms-win-crt-runtime-l1-1-0.dll
api-ms-win-crt-math-l1-1-0.dll
api-ms-win-crt-convert-l1-1-0.dll
api-ms-win-crt-stdio-l1-1-0.dll
api-ms-win-crt-filesystem-l1-1-0.dll
api-ms-win-crt-time-l1-1-0.dll
api-ms-win-crt-heap-l1-1-0.dll
api-ms-win-crt-environment-l1-1-0.dll
api-ms-win-crt-locale-l1-1-0.dll
api-ms-win-crt-utility-l1-1-0.dll
Summary
1000 .00cfg
A000 .data
6000 .idata
1A000 .pdata
DB000 .rdata
9000 .reloc
1000 .rsrc
230000 .text
1000 _RDATA
The test is now failing
worker[01] mysql-test-run: WARNING: Process [mysqld.1 - pid: 45092, winpid: 45092] died after mysql-test-run waited 0 seconds for C:/Users/Administrator/Desktop/anel/bld/mysql-test/var/1/run/mysqld.1.pid to be created.
connect.rest w1 [ fail ]
Test ended at 2024-02-07 13:32:55
CURRENT_TEST: connect.rest
The problem that now exists is that PATH variable should be set.
vladbogo can you please add the cmake variables to windows builders and append to env PATH variable C:\ProgramData\chocolatey\lib\curl\tools\curl-7.85.0-win64-mingw\bin ?
After installing vcpkg and adding -DCMAKE_TOOLCHAIN_FILE:FILEPATH=C:/vcpkg/scripts/buildsystems/vcpkg.cmake, cmake's find_package() works - libcurl is found, but we still get the error in the test:
worker[01] mysql-test-run: WARNING: Process [mysqld.1 - pid: 45092, winpid: 45092] died after mysql-test-run waited 0 seconds for C:/Users/Administrator/Desktop/anel/bld/mysql-test/var/1/run/mysqld.1.pid to be created.
After adding the C:\vcpkg\packages\curl_x64-windows\debug\bin to PATH still test didn't work and failed with the same error.
After adding the C:\vcpkg\installed\x64-windows\debug\bin to PATH it worked (very likely because cur has a bunch of dependencies itself).
With this change on Windows test works:
connect.rest w1 [ pass ] 328
Connect suite is also tested and it worked.
Completed: All 59 tests were successful.
15 tests were skipped, 15 by the test itself.
Anel Husakovic
added a comment - After installing vcpkg and adding -DCMAKE_TOOLCHAIN_FILE:FILEPATH=C:/vcpkg/scripts/buildsystems/vcpkg.cmake , cmake 's find_package() works - libcurl is found, but we still get the error in the test:
worker[01] mysql-test-run: WARNING: Process [mysqld.1 - pid: 45092, winpid: 45092] died after mysql-test-run waited 0 seconds for C:/Users/Administrator/Desktop/anel/bld/mysql-test/var/1/run/mysqld.1.pid to be created.
connect.rest w1 [ fail ]
After checking the linked library we can find:
>> dumpbin /dependents storage\connect\Debug\ha_connect.dll
File Type: DLL
Image has the following dependencies:
libcurl-d.dll
After testing locally (building the binaries in bld directory) it can found following paths of library .dll
C:\vcpkg\installed\x64-windows\debug\bin
C:\vcpkg\packages\curl_x64-windows\debug\bin
C:\Users\Administrator\Desktop\anel\bld\storage\connect\Debug
C:\Users\Administrator\Desktop\anel\bld\mysql-test\var\plugins
After adding the C:\vcpkg\packages\curl_x64-windows\debug\bin to PATH still test didn't work and failed with the same error.
After adding the C:\vcpkg\installed\x64-windows\debug\bin to PATH it worked (very likely because cur has a bunch of dependencies itself).
With this change on Windows test works:
connect.rest w1 [ pass ] 328
Connect suite is also tested and it worked.
Completed: All 59 tests were successful.
15 tests were skipped, 15 by the test itself.
People
Anel Husakovic
Daniel Black
Votes:
1Vote for this issue
Watchers:
3Start watching this issue
Dates
Created:
Updated:
Resolved:
{"report":{"fcp":829.8000001907349,"ttfb":144.19999980926514,"pageVisibility":"visible","entityId":127482,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":32,"apdex":1,"journeyId":"dc0d9ad4-f0cb-4e03-9a71-ab26e23ccaaa","navigationType":0,"readyForUser":909.1999998092651,"redirectCount":0,"resourceLoadedEnd":896,"resourceLoadedStart":152.10000038146973,"resourceTiming":[{"duration":13.199999809265137,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":152.10000038146973,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":152.10000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":165.30000019073486,"responseStart":0,"secureConnectionStart":0},{"duration":13.200000762939453,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":152.39999961853027,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":152.39999961853027,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":165.60000038146973,"responseStart":0,"secureConnectionStart":0},{"duration":70,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":152.60000038146973,"connectEnd":152.60000038146973,"connectStart":152.60000038146973,"domainLookupEnd":152.60000038146973,"domainLookupStart":152.60000038146973,"fetchStart":152.60000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":152.60000038146973,"responseEnd":222.60000038146973,"responseStart":222.60000038146973,"secureConnectionStart":152.60000038146973},{"duration":170.39999961853027,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":152.80000019073486,"connectEnd":152.80000019073486,"connectStart":152.80000019073486,"domainLookupEnd":152.80000019073486,"domainLookupStart":152.80000019073486,"fetchStart":152.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":152.80000019073486,"responseEnd":323.19999980926514,"responseStart":323.19999980926514,"secureConnectionStart":152.80000019073486},{"duration":173.60000038146973,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":153,"connectEnd":153,"connectStart":153,"domainLookupEnd":153,"domainLookupStart":153,"fetchStart":153,"redirectEnd":0,"redirectStart":0,"requestStart":153,"responseEnd":326.6000003814697,"responseStart":326.6000003814697,"secureConnectionStart":153},{"duration":174.60000038146973,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":153.19999980926514,"connectEnd":153.19999980926514,"connectStart":153.19999980926514,"domainLookupEnd":153.19999980926514,"domainLookupStart":153.19999980926514,"fetchStart":153.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":153.19999980926514,"responseEnd":327.80000019073486,"responseStart":327.80000019073486,"secureConnectionStart":153.19999980926514},{"duration":184,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":153.39999961853027,"connectEnd":153.39999961853027,"connectStart":153.39999961853027,"domainLookupEnd":153.39999961853027,"domainLookupStart":153.39999961853027,"fetchStart":153.39999961853027,"redirectEnd":0,"redirectStart":0,"requestStart":153.39999961853027,"responseEnd":337.3999996185303,"responseStart":337.3999996185303,"secureConnectionStart":153.39999961853027},{"duration":227.69999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":153.60000038146973,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":153.60000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":381.30000019073486,"responseStart":0,"secureConnectionStart":0},{"duration":185.60000038146973,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":153.69999980926514,"connectEnd":153.69999980926514,"connectStart":153.69999980926514,"domainLookupEnd":153.69999980926514,"domainLookupStart":153.69999980926514,"fetchStart":153.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":153.69999980926514,"responseEnd":339.30000019073486,"responseStart":339.30000019073486,"secureConnectionStart":153.69999980926514},{"duration":227.60000038146973,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":153.89999961853027,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":153.89999961853027,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":381.5,"responseStart":0,"secureConnectionStart":0},{"duration":186.89999961853027,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":154,"connectEnd":154,"connectStart":154,"domainLookupEnd":154,"domainLookupStart":154,"fetchStart":154,"redirectEnd":0,"redirectStart":0,"requestStart":154,"responseEnd":340.8999996185303,"responseStart":340.8999996185303,"secureConnectionStart":154},{"duration":573.1999998092651,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":155.30000019073486,"connectEnd":155.30000019073486,"connectStart":155.30000019073486,"domainLookupEnd":155.30000019073486,"domainLookupStart":155.30000019073486,"fetchStart":155.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":155.30000019073486,"responseEnd":728.5,"responseStart":728.5,"secureConnectionStart":155.30000019073486},{"duration":569.1000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":160.69999980926514,"connectEnd":160.69999980926514,"connectStart":160.69999980926514,"domainLookupEnd":160.69999980926514,"domainLookupStart":160.69999980926514,"fetchStart":160.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":160.69999980926514,"responseEnd":729.8000001907349,"responseStart":729.8000001907349,"secureConnectionStart":160.69999980926514},{"duration":77.09999942779541,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":414.30000019073486,"connectEnd":414.30000019073486,"connectStart":414.30000019073486,"domainLookupEnd":414.30000019073486,"domainLookupStart":414.30000019073486,"fetchStart":414.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":414.30000019073486,"responseEnd":491.3999996185303,"responseStart":491.3999996185303,"secureConnectionStart":414.30000019073486},{"duration":39,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/css/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":744.3000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":744.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":783.3000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":133.19999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/e65b778d185daf5aee24936755b43da6/_/download/contextbatch/js/browser-metrics-plugin.contrib,-_super,-project.issue.navigator,-jira.view.issue,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":745.5,"connectEnd":745.5,"connectStart":745.5,"domainLookupEnd":745.5,"domainLookupStart":745.5,"fetchStart":745.5,"redirectEnd":0,"redirectStart":0,"requestStart":745.5,"responseEnd":878.6999998092651,"responseStart":878.6999998092651,"secureConnectionStart":745.5},{"duration":150.10000038146973,"initiatorType":"script","name":"https://jira.mariadb.org/s/097ae97cb8fbec7d6ea4bbb1f26955b9-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/js/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":745.8999996185303,"connectEnd":745.8999996185303,"connectStart":745.8999996185303,"domainLookupEnd":745.8999996185303,"domainLookupStart":745.8999996185303,"fetchStart":745.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":745.8999996185303,"responseEnd":896,"responseStart":896,"secureConnectionStart":745.8999996185303},{"duration":118.89999961853027,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":822.3000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":822.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":941.1999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":101,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":844.6999998092651,"connectEnd":844.6999998092651,"connectStart":844.6999998092651,"domainLookupEnd":844.6999998092651,"domainLookupStart":844.6999998092651,"fetchStart":844.6999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":844.6999998092651,"responseEnd":945.6999998092651,"responseStart":945.6999998092651,"secureConnectionStart":844.6999998092651}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":3,"responseStart":144,"responseEnd":152,"domLoading":149,"domInteractive":1012,"domContentLoadedEventStart":1012,"domContentLoadedEventEnd":1067,"domComplete":1220,"loadEventStart":1220,"loadEventEnd":1220,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":944.1999998092651},{"name":"bigPipe.sidebar-id.end","time":945.1000003814697},{"name":"bigPipe.activity-panel-pipe-id.start","time":945.3000001907349},{"name":"bigPipe.activity-panel-pipe-id.end","time":949.5},{"name":"activityTabFullyLoaded","time":1089.8000001907349}],"measures":[],"correlationId":"d9f47bbd4952ef","effectiveType":"4g","downlink":9.7,"rtt":0,"serverDuration":96,"dbReadsTimeInMs":13,"dbConnsTimeInMs":20,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
Direct link for libcurl for W64 here