id
stringlengths
4
10
text
stringlengths
4
2.14M
source
stringclasses
2 values
created
timestamp[s]date
2001-05-16 21:05:09
2025-01-01 03:38:30
added
stringdate
2025-04-01 04:05:38
2025-04-01 07:14:06
metadata
dict
703278414
NNI can't quantize bias? Recently, i tried to apply NNI to my model(with biases), but i found that NNI only support ['weight', 'input', 'output'] quantitation, is that NNI do not support bias quantization(in QAT)? @wZuck thanks for pointing it out. bias has not been supported in the current implementation of quantization. We will support it in the next release soon.
gharchive/issue
2020-09-17T05:28:55
2025-04-01T06:39:35.322066
{ "authors": [ "QuanluZhang", "wZuck" ], "repo": "microsoft/nni", "url": "https://github.com/microsoft/nni/issues/2903", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1646214917
Marshalling: Events .NET events should be projected to JS, somehow. There is no universal standard API or pattern for JS events; there are slightly different approaches taken for DOM events, Node.js, VS Code, and other projects. (I personally prefer the VS Code events model.) Personally, I like a lot the Deno's general concept of trying to preserve web standards - a thing that Node broadly neglected til more recently, but seems to be "adjusting its route" to it. So, just giving an opinion (just theoric) here, I would try to find the most standard way possible in JS that adheres to the .NET standards (like going with delegates or something that could mimic technically the JS behavior). For reference: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener https://nodejs.org/api/events.html#nodejs-eventtarget-vs-dom-eventtarget Thanks for all the great work, @jasongin!
gharchive/issue
2023-03-29T17:14:39
2025-04-01T06:39:35.325299
{ "authors": [ "jasongin", "luanmm" ], "repo": "microsoft/node-api-dotnet", "url": "https://github.com/microsoft/node-api-dotnet/issues/59", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
814681232
support non-x86_64 targets It would be useful to support fuzzing non-x86_64 targets on existing Azure VMs. For fully self-contained targets, such as AARCH64-based libfuzzer targets, we can get away with running within qemu-user. Fully-featured QEMU VMs would be required for anything more complex. We're moving forwards with qemu-user for now. If users have a need for fully featured qemu based fuzzing, we can revisit this.
gharchive/issue
2021-02-23T17:37:05
2025-04-01T06:39:35.344528
{ "authors": [ "bmc-msft" ], "repo": "microsoft/onefuzz", "url": "https://github.com/microsoft/onefuzz/issues/589", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1460307502
feat(atenlib): establish the aten-lib directory Stack from ghstack (oldest at bottom): #208 #223 #212 -> #202 @fatcat-z please approve if it looks good. thanks!
gharchive/pull-request
2022-11-22T17:48:44
2025-04-01T06:39:35.346558
{ "authors": [ "justinchuby" ], "repo": "microsoft/onnx-script", "url": "https://github.com/microsoft/onnx-script/pull/202", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1204466632
jinja2==2.11.3 conflict with newest markupsafe, which cause init tensorboard crash. + python /usr/local/pai/init.d/initializer.py /usr/local/pai/runtime.d/job_config.yaml /usr/local/pai/secrets/secrets.yaml /usr/local/pai/user-extension-secrets/userExtensionSecrets.yaml /usr/local/pai/token-secrets/token /usr/local/pai/plugins /usr/local/pai/runtime.d taskrole 2022-04-14 11:30:23,269 - INFO - initializer.py:235 - loading yaml from /usr/local/pai/runtime.d/job_config.yaml 2022-04-14 11:30:23,284 - INFO - initializer.py:173 - Starting to prepare plugin ssh 2022-04-14 11:30:23,466 - INFO - initializer.py:52 - 2022-04-14 11:30:23,466 - INFO - init.py:118 - Ssh runtime plugin perpared 2022-04-14 11:30:23,481 - INFO - initializer.py:173 - Starting to prepare plugin teamwise_storage 2022-04-14 11:30:23,933 - INFO - initializer.py:52 - This plugin is deprecated, will ignore this plugin 2022-04-14 11:30:24,071 - INFO - initializer.py:173 - Starting to prepare plugin tensorboard 2022-04-14 11:30:24,129 - INFO - initializer.py:52 - Traceback (most recent call last): 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - File "/usr/local/pai/plugins/tensorboard/init.py", line 23, in <module> 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - from jinja2 import Template 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - File "/usr/local/lib/python3.7/site-packages/jinja2/__init__.py", line 12, in <module> 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - from .environment import Environment 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - File "/usr/local/lib/python3.7/site-packages/jinja2/environment.py", line 25, in <module> 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - from .defaults import BLOCK_END_STRING 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - File "/usr/local/lib/python3.7/site-packages/jinja2/defaults.py", line 3, in <module> 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - from .filters import FILTERS as DEFAULT_FILTERS # noqa: F401 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - File "/usr/local/lib/python3.7/site-packages/jinja2/filters.py", line 13, in <module> 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - from markupsafe import soft_unicode 2022-04-14 11:30:24,130 - INFO - initializer.py:52 - ImportError: cannot import name 'soft_unicode' from 'markupsafe' (/usr/local/lib/python3.7/site-packages/markupsafe/__init__.py) 2022-04-14 11:30:24,135 - ERROR - initializer.py:56 - failed to run /usr/local/pai/plugins/tensorboard/init.py, error code is 1 I created a hotfix for this issue. To use the hotfix. Please run kubectl edit ds rest-server-ds first, Then change the env LAUNCHER_RUNTIME_IMAGE to siaimes/openpai-runtime:v0.1.12-hp3 - name: LAUNCHER_RUNTIME_IMAGE value: siaimes/openpai-runtime:v0.1.12-hp3 If you want to persist the configuration, please follow this: https://github.com/microsoft/openpai-runtime/issues/33#issuecomment-730818664
gharchive/issue
2022-04-14T12:28:08
2025-04-01T06:39:35.413661
{ "authors": [ "siaimes" ], "repo": "microsoft/openpai-runtime", "url": "https://github.com/microsoft/openpai-runtime/issues/49", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
935806615
[Question] How to import an SSL certificate? Hi! I'm targeting a host that requires SSL certificate validation, so I've installed the certificate on the machine that I'm running the tests from, and that works just fine in headed mode, however, in headless mode, I am unable to connect to the host (using Chromium, for this particular implementation). I've extracted the CRT and KEY files and attempted to import them programmatically, but I've reached a bit of a roadblock and I'm not entirely sure how to feed these to the browser context. Any suggestions that might point me in the right direction, please? This sounds like a duplicate of https://github.com/microsoft/playwright/issues/1799 to me. This sounds like a duplicate of microsoft/playwright#1799 to me. Hi @mxschmitt. As far as I can tell, and please correct me if I'm wrong, the referenced issue seems to me to be slightly different from this one, in the sense that it seems to refer to the popup that you get for selecting a certificate, which I've already worked out by creating a registry entry for the browsers I'm using. e.g. [HKEY_CURRENT_USER\SOFTWARE\Policies\Chromium\AutoSelectCertificateForUrls] "1"="{\"pattern\":\"https://example.net/\",\"filter\":{\"ISSUER\":{\"CN\":\"CERT-NAME\"}}}" Don't get me wrong, having the ability to do this programmatically without having to resort to registry hacks would be amazing, but this particular issue is not a blocker for my organization, whereas not being able to import a certificate currently is. That being said, the answer seems to be more related to the issue I'm having so I will try to port that solution to C# code hoping it's a straightforward port. The implementation of a feature to support this at the API level would be really nice, though. Thank you very much for the help, Max, I hope the solution from your referenced issue gets me back on track. Hi @mxschmitt, unfortunately I've hit a roadblock again, as I am unable to find an equivalent for... agentOptions: { ca: fs.readFileSync('./certs/ca.pem'), pfx: fs.readFileSync('./certs/user_cert.p12'), passphrase: fs.readFileSync('./certs/user_cert.p12.pwd'), } ...which I assume would need to be part of a RouteContinueOptions object passed as the argument to a ContinueAsync(options) call, or maybe set an IRequest property? Any help you could provide with this issue would be greatly appreciated, as I've invested a significant amount of time and staff resources on this particular automation project and this issue is completely blocking us from going live at the moment. If I understand your issue correctly, this is related to https://github.com/microsoft/playwright/issues/1799. I suggest that you upvote that issue so that we have an effective way of gauging interest. As a workaround, can you try having the user certificate imported on the OS level? Brilliant, thank you very much, I've upvoted the related issue and I'll give this snippet a try! Just to clarify one thing, did you make sure you're importing to the right cert store? I think My is correct, but I'm not 100% sure at the moment. Hi @avodovnik. Yeah, I've tried all permutations of StoreName and StoreLocation. When I do it manually I normally import the certificate in the Personal store for the Current User. Closing since we track this feature request upstream. There doesn't seem to be any progress on https://github.com/microsoft/playwright-dotnet/issues/1601 yet.
gharchive/issue
2021-07-02T14:09:55
2025-04-01T06:39:35.421910
{ "authors": [ "Xen0byte", "avodovnik", "mxschmitt" ], "repo": "microsoft/playwright-dotnet", "url": "https://github.com/microsoft/playwright-dotnet/issues/1601", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1076603576
[Bug]: .NET Framework 4.8 Driver not found in Temporary ASP.NET Files Playwright version 1.17.2 Operating system Windows What browsers are you seeing the problem on? Chromium Other information Project type : ASP.NET Web Application (.NET Framework) Target framework: .NET Framework 4.8 What happened? / Describe the bug Steps to Reproduce Create an ASP.NET Web Application (Web Forms or MVC) on .NET 4.8 Install Microsoft.Playwright package via NuGet Package Manager Copy sample code from Getting started page into default page code-behind (via Page_Load event or default controller's action) Visit default page to trigger sample code Expected Screenshot generated successfully with HTTP 200 OK response. Actual Display YSOD with following information: Source Error: var playwright = await Microsoft.Playwright.Playwright.CreateAsync(); Stack Trace: [PlaywrightException: Driver not found: C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\vs\77619d23\815ed4b7\assembly\dl3\.playwright\node\win32_x64\playwright.cmd] Microsoft.Playwright.Helpers.Paths.GetExecutablePath() +299 Microsoft.Playwright.Transport.StdIOTransport.GetProcess() +38 Microsoft.Playwright.Transport.StdIOTransport..ctor() +77 Microsoft.Playwright.<CreateAsync>d__0.MoveNext() +61 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) +102 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +64 System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() +29 Zephyr.TestDrive.Playwright.Web.<GenerateScreenshot>d__6.MoveNext() in D:\VS\Zephyr.TestDrive.Playwright.Web\Index.aspx.cs:34 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) +102 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +64 System.Runtime.CompilerServices.TaskAwaiter.GetResult() +27 Zephyr.TestDrive.Playwright.Web.Index.Page_Load(Object sender, EventArgs e) in D:\VS\Zephyr.TestDrive.Playwright.Web\Index.aspx.cs:28 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +85 System.Web.UI.Control.OnLoad(EventArgs e) +79 System.Web.UI.Control.LoadRecursive() +130 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2853 Remarks .playwright folder was not found under bin folder after rebuilding project as in Console Application Copying .playwright folder to web app bin folder didn't help Copying .playwright folder to location reported in stack trace will cause page load to wait indefinitely Same behaviour was observed when installing browser locally or via custom ExecutablePath with BrowserTypeLaunchOptions Code snippet to reproduce your bug // Invoke method in web page with following statement: GenerateScreenshot().GetAwaiter().GetResult(); private async Task GenerateScreenshot() { var playwright = await Microsoft.Playwright.Playwright.CreateAsync(); var browser = await playwright.Chromium.LaunchAsync(); var page = await browser.NewPageAsync(); await page.GotoAsync("https://playwright.dev/dotnet"); await page.ScreenshotAsync(new PageScreenshotOptions { Path = "screenshot.png" }); } Relevant log output No response Folding into #1842.
gharchive/issue
2021-12-10T09:10:41
2025-04-01T06:39:35.430251
{ "authors": [ "Zephyr-Koo", "mxschmitt" ], "repo": "microsoft/playwright-dotnet", "url": "https://github.com/microsoft/playwright-dotnet/issues/1872", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1521084045
[BUG] Playwright 1.29.0 is not yet available on Maven Central Context: Playwright 1.29.0 is not yet available on Maven Central, latest version available right now is 1.28.1 released Nov 29, 2022 That cause compilation issues while following the Getting Started, Installation, Usage section here. The page is referencing the 1.29.0 version in the pom.xml A temporal solution is using 1.28.1 https://mvnrepository.com/artifact/com.microsoft.playwright/playwright Code Snippet <dependency> <groupId>com.microsoft.playwright</groupId> <artifactId>playwright</artifactId> <version>1.29.0</version> </dependency> Describe the bug Missing artifact com.microsoft.playwright:playwright:jar:1.29Java(0) 1.29.0 is now available.
gharchive/issue
2023-01-05T17:11:48
2025-04-01T06:39:35.434516
{ "authors": [ "emecas", "yury-s" ], "repo": "microsoft/playwright-java", "url": "https://github.com/microsoft/playwright-java/issues/1159", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
799365565
[BUG]: Power BI Admin Dashboard Describe the bug When I try to load data in Power BI, I receive the below error. Screenshots Hello. I'm afraid we need more infromation: What version of Core do you have installed? What version of the PBI desktop are you using? What is the name of the PBI template you are trying to open? Core - 1.85 PBI Desktop - 2.88.1385.0 latest version] PBI Template - 2021-02-01 Would you mind trying with the version just shipped today? 2021-02-02.pbit I dont repro the issue but perhaps someone else did and already fixed wit that update. Issue resolved. Thank You @JeneferM-MSFT
gharchive/issue
2021-02-02T15:07:34
2025-04-01T06:39:35.501735
{ "authors": [ "AkashPatel136", "JeneferM-MSFT" ], "repo": "microsoft/powerapps-tools", "url": "https://github.com/microsoft/powerapps-tools/issues/746", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2058357572
Importing solution with deployment settings file does not update environment variable We have a model-driven Power App that we move from DEV/TEST to STAGING to PROD using Azure pipelines. The solution is exported as "managed" and this managed solution is then deployed to STAGING subsequently to PROD. We have a single environment variable that needs to be updated when importing to STAGING/PROD. We have created a deployment settings file with this content: { "EnvironmentVariables": [ { "SchemaName": "gp_WebAPIURI", "Value": "https://org0_staging.api.crm4.dynamics.com" } ] } We have configured the "Solution Import" task like this: - task: PowerPlatformImportSolution@2 inputs: authenticationType: 'PowerPlatformSPN' PowerPlatformSPN: 'app STAGING' SolutionInputFile: 'D:\a\1\s\solution_managed.zip' #SolutionInputFile: '$(Pipeline.Workspace)/app_managed/solution_managed.zip' AsyncOperation: false ConvertToManaged: false UseDeploymentSettingsFile: true DeploymentSettingsFile: 'D:/A/1/app_managed/s/pipelines/deployment-settings_staging.json' - task: PowerPlatformPublishCustomizations@2 inputs: authenticationType: 'PowerPlatformSPN' PowerPlatformSPN: 'app STAGING' #Environment: '$(BuildTools.EnvironmentUrl)' AsyncOperation: true MaxAsyncWaitTime: '60' The Import task is finished successfully and we can see in the logs that the deployment settings file is loaded ##[debug]UseDeploymentSettingsFile=true ##[debug]DeploymentSettingsFile=D:\A\1\app_managed\s\pipelines\deployment-settings_staging.json 'Calling pac cli inputs: solution import --path D:\\a\\1\\s\\app_managed.zip --async false --force-overwrite false --publish-changes false --skip-dependency-check false --convert-to-managed false --max-async-wait-time 60 --activate-plugins true --skip-lower-version false --settings-file D:\\A\\1\\app_managed\\s\\pipelines\\deployment-settings_staging.json --log-to-console' [ 'info: bolt.cli.CommandProcessor[0]' ] [ ' StartExecutingVerb (Verbs: ["solution","import"])' ] [ 'info: bolt.cli.Verb[0]' ] [ " Executing verb 'solution import' with arguments --path,--async,--force-overwrite,--publish-changes,--skip-dependency-check,--convert-to-managed,--max-async-wait-time,--activate-plugins,--skip-lower-version,--settings-file." ] But nothing happens - the environment variable is not updated with the new value. I am kind of at a loss here - I cannot figure out why it is not updated as per the configuration. What am I doing wrong here? Thanks 😊 @jrossstocholm Can you try setting the OverwriteUnmanagedCustomizations parameter to true on your solution import task. I'm guessing you have an unmanaged layer on your Environment Variable component @jrossstocholm Can you try setting the OverwriteUnmanagedCustomizations parameter to true on your solution import task. I'm guessing you have an unmanaged layer on your Environment Variable component I do not have any unmanaged layers on my environment variables. However - I have have been able to fix the issue by clearing the environment variable before exporting the solution. This enables me to supply the correct value for my staging environment. I know that this is not a permanent fix - but it works for now 😊. I will close this ticket now and revert to it when I have time to look into the real issue again. Thank you.
gharchive/issue
2023-12-28T12:04:54
2025-04-01T06:39:35.507334
{ "authors": [ "jrossstocholm", "parvezghumra" ], "repo": "microsoft/powerplatform-build-tools", "url": "https://github.com/microsoft/powerplatform-build-tools/issues/689", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
662949960
Missing info for numpy Environment data Language Server version: v2020.7.2 OS and version: macOS Python version (& distribution if applicable, e.g. Anaconda): Python 3.6.10 Expected behaviour When I hover over np.ndarray I expected to see (class) ndarray Actual behaviour When I hover over np.ndarray it says (import) ndarray: Unknown Code Snippet / Additional information import numpy as np def f(n: np.ndarray): pass numpy 1.18.1 Much of numpy is compiled. We currently don't have a scraper that will create type stubs for compiled modules. Therefore, for now, a fix would be for numpy to ship stubs / annotations to describe their code, which I believe that they have merged. I'd be curious if this works better in numpy 1.19 (which I think has the stubs, but I'm unsure). Thanks for the tip @jakebailey ! I've upgraded to numpy 1.19.1 but unfortunately, I'm still encountering the above. I'm going to retitle this and use this to deduplicate numpy issues. Note: there's already been a PR merged into numpy (https://github.com/numpy/numpy/pull/16515) that adds type stubs (these used to be in a separate repo), but the commit isn't in a release yet. So, this should be working better soon. There are other packages with this same problem (i.e. Pysam). Is it possible to add a setting to disable is not a known member of module to Pylance? Is this issue also including the problem that doc strings are not displayed for some numpy functions such as numpy.arange? Note: for other functions like numpy.zeros_like the doc strings are displayed correctly. Yes. These functions are from compiled modules; there's no source code we can read to obtain them. Some of these functions are showing up only because numpy has declared they exist in their __all__ expression, but we aren't able to actually find the definition (so assume Unknown). Numpy's next release is supposed to include stubs, which will make these functions known, however the docstrings are still only going to be in the compiled module where we can't access them without actually running Python and live importing the module to extract it. Looks like the stubs are coming in NumPy 1.20. It's not clear to me if this will help with auto-completion in situations such as the following: def test() -> np.ndarray: return np.arange(5) x = test() # x. <tab> doesn't give me any ndarray completions and the hover-text for test() says it returns Any When I select jedi as the language server I don't have this problem, but I guess jedi must do this by actually running Python and live importing the module to extract it. Perhaps this issue is relevant? ENH: Add annotations to ndarray and generic I forgot to update this, but as of the most recent release we should be able to find many more things in numpy than previously; we'd appreciate feedback about other things that you're seeing in numpy, however. I have upgraded to the newest version. But it alse can't catch the type returned by frequently-used api like: `a = np.array(1) Pylance think the type of a is Any` May the support for numpydoc handle more problems? The stubs are generated directly from the compiled numpy code; we don't know anything more than that and just assume Any past there. Better types will come from numpy's new stubs. Parsing docstrings is a lot tricker and not something I would expect us to try for return types. @jakebailey Since you said feedback about problems we see in numpy is appreciated... np.linspace(1, 2, 3).tolist() causes Pylance to report Cannot access member "tolist" for type "tuple[Any, Any | float]" Member "tolist" is unknownPylance (reportGeneralTypeIssues) The next release includes some improvements to our source mapper which should help get numpy docs and navigation: The next release includes some improvements to our source mapper which should help get numpy docs and navigation: Does that release shows np.logical_and, np.logical_or, etc. as well? Current version lacks it: Are you on at least numpy 1.20? That function is defined in their stubs and should appear, but may not on older versions of numpy without type info. thanks. upgrading to 1.20 version helped! Much of numpy is compiled. We currently don't have a scraper that will create type stubs for compiled modules. Therefore, for now, a fix would be for numpy to ship stubs / annotations to describe their code, which I believe that they have merged. I'd be curious if this works better in numpy 1.19 (which I think has the stubs, but I'm unsure). Hi @jakebailey , I am new to vscode, and also encounter this issue. I understand that these compiled packages are hard to get the type info. But I notice that Pycharm can detect those types accurately, any idea how they make this? Thanks in advance! Not sure if this will be of any help, but the next 1.21 release should improve many of the annotations. Notably this includes replacing all Any-based placeholders with explicit function definitions: https://github.com/numpy/numpy/issues/18838. Much of numpy is compiled. We currently don't have a scraper that will create type stubs for compiled modules. Therefore, for now, a fix would be for numpy to ship stubs / annotations to describe their code, which I believe that they have merged. I'd be curious if this works better in numpy 1.19 (which I think has the stubs, but I'm unsure). Hi @jakebailey , I am new to vscode, and also encounter this issue. I understand that these compiled packages are hard to get the type info. But I notice that Pycharm can detect those types accurately, any idea how they make this? Thanks in advance! Without reading their implementation, either by running the library to obtain info at runtime (scraping), or by hardcoding, both of which we do not do. We have prescraped stubs for some info, but largely rely on numpy itself to provide types. Not sure if this will be of any help, but the next 1.21 release should improve many of the annotations. Notably this includes replacing all Any-based placeholders with explicit function definitions: numpy/numpy#18838. Hm, I could have sworn this was to be there for 1.20.3, but maybe only a small subset was backported. Hm, I could have sworn this was to be there for 1.20.3, but maybe only a small subset was backported. These were two different, albeit related, issues: The annotations for a few functions weren't picked up. Most objects were annotated as Any. The first issue was indeed fixed in 1.20.3, the second one is scheduled for 1.21. new numpy release with improved annotations https://github.com/numpy/numpy/releases/tag/v1.21.0rc1 In my case, if a numpy array A is not created with "A=np.zeros()" or "A=np.empy()", then pylance can't recognize the property A.shape. For example, if A is created with "np.frombuffer()". If you select "Go to Declaration" for frombuffer, you'll be taken to the place where this function is defined in numpy. I have the latest version installed, and it looks like that function isn't properly annotated with a return type. def frombuffer(buffer, dtype=..., count=..., offset=..., *, like=...): ... So this is bug (an omission) within the numpy library. You can report the bug (or better yet, submit a PR) in the numpy repo. @erictraut Thanks. I see now. FYI, annotations for from_buffer were added back in https://github.com/numpy/numpy/pull/19237. They'll be available on pypi with the 1.22 release in a few months, but they are already on the master branch. original issue fixed. new numpy pre-release is out https://github.com/numpy/numpy/releases/tag/v1.22.0rc1 any further missing numpy type annotations should be logged there.
gharchive/issue
2020-07-21T12:14:02
2025-04-01T06:39:35.548902
{ "authors": [ "BvB93", "aboettcher", "bschnurr", "dcervenkov", "erictraut", "ggydush-fn", "jakebailey", "kong13661", "neighthan", "randallpittman", "sweettyler", "tekumara", "vandesa003", "wvolkov" ], "repo": "microsoft/pylance-release", "url": "https://github.com/microsoft/pylance-release/issues/150", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
1306991647
Pytorch Backends Module Cannot Be Detected In the code below, I can successfully import the torch package, but when I use torch.backends, Pylance gives me an error that the backends module cannot be found. However, the strange thing is that my code can run correctly, and I can directly import torch.backends, where Pylance does not give me an error. I wonder how to solve this problem. # -*- coding: utf-8 -*- import torch from torch.backends import cudnn if __name__ == '__main__': torch.backends.cudnn.benchmark = torch.backends.cudnn.is_available() cudnn.benchmark = cudnn.is_available() Environment Windows 10 Pro 21H2 Python 3.10.4 Visual Studio Code 1.19.1 (System Setup) Python Extension v2022.10.1 Pylance Extension v2022.7.30 Python Virtual Environment Packages Package Version | Package Version ----------------------- ------------ | ----------------------- ------------ absl-py 1.1.0 | tqdm 4.64.0 asttokens 2.0.5 | traitlets 5.1.1 autopep8 1.6.0 | typing_extensions 4.3.0 backcall 0.2.0 | urllib3 1.26.10 cachetools 5.2.0 | visdom 0.1.8.9 certifi 2022.6.15 | pyasn1-modules 0.2.8 charset-normalizer 2.1.0 | pycodestyle 2.8.0 colorama 0.4.5 | pydocstyle 6.1.1 cycler 0.11.0 | pyflakes 2.4.0 debugpy 1.5.1 | Pygments 2.11.2 decorator 5.1.1 | pyasn1 0.4.8 entrypoints 0.4 | pyasn1-modules 0.2.8 executing 0.8.3 | pycodestyle 2.8.0 fonttools 4.34.4 | pydocstyle 6.1.1 google-auth 2.9.1 | pyflakes 2.4.0 google-auth-oauthlib 0.4.6 | Pygments 2.11.2 grpcio 1.47.0 | pylama 8.3.8 idna 3.3 | pyparsing 3.0.9 IProgress 0.4 | python-dateutil 2.8.2 ipykernel 6.9.1 | pytz 2022.1 ipython 8.3.0 | pywin32 302 jedi 0.18.1 | pyzmq 22.3.0 jsonpatch 1.32 | requests 2.28.1 jsonpointer 2.3 | requests-oauthlib 1.3.1 jupyter-client 7.2.2 | rsa 4.8 jupyter-core 4.10.0 | scipy 1.8.1 kiwisolver 1.4.3 | seaborn 0.11.2 Markdown 3.3.7 | setuptools 61.2.0 matplotlib 3.5.2 | six 1.16.0 matplotlib-inline 0.1.2 | snowballstemmer 2.2.0 mccabe 0.7.0 | stack-data 0.2.0 nest-asyncio 1.5.5 | tensorboard 2.9.1 numpy 1.23.0 | tensorboard-data-server 0.6.1 oauthlib 3.2.0 | tensorboard-plugin-wit 1.8.1 packaging 21.3 | tensorboardX 2.5.1 pandas 1.4.3 | toml 0.10.2 parso 0.8.3 | torch 1.12.0+cu116 pickleshare 0.7.5 | torch-tb-profiler 0.4.0 Pillow 9.2.0 | torchaudio 0.12.0+cu116 pip 21.2.4 | torchfile 0.1.0 prompt-toolkit 3.0.20 | torchvision 0.13.0+cu116 protobuf 3.19.4 | tornado 6.1 pure-eval 0.2.2 | wcwidth 0.2.5 pyasn1 0.4.8 | websocket-client 1.3.3 pyasn1-modules 0.2.8 | Werkzeug 2.1.2 pycodestyle 2.8.0 | wheel 0.37.1 pyasn1 0.4.8 | wincertstore 0.2 Your code is relying on fragile side effects of the Python import mechanism. You're first importing torch, which does not import the submodule backends. If you were to access torch.backends after the first import, your code would likely crash. You're then importing the submodule torch.backends.cudnn and assigning the module to the local symbol cudnn. Later, your code is relying on the side effect that the backends attribute of the torch module was populated as a side effect of the second import statement. Pylance intentionally does not model such side effects. In general, they cannot be modeled statically. Code should not rely on such side effects, so it is intentionally flagged as an error. If your code is going to depend on accessing torch.backends.cdnn, it should include the statement import torch.backends.cdnn. Or if you would prefer to stick with the statement from torch.backends import cdnn, then you should use the local symbol cdnn to access the cdnn submodule. Thank you for your reply. It is very helpful to me. You mentioned in your reply that If you were to access torch.backends after the first import, your code would likely crash. But It seems that there are no similar statements in the official documents of PyTorch. In the doucuments, torch.backends seems to be used directly such as GPU specific optimizations and TensorFloat-32(TF32) on Ampere devices. Besides, I wrote the following testing code, and no crash occurred: # -*- coding: utf-8 -*- import torch if __name__ == '__main__': print(torch.backends.cuda.is_built()) print(torch.backends.cudnn.is_available()) print(torch.backends.cudnn.version()) print(torch.backends.cudnn.enabled) print(torch.backends.cudnn.allow_tf32) print(torch.backends.mps.is_available()) print(torch.backends.mps.is_built()) print(torch.backends.openmp.is_available()) print(torch.backends.mkldnn.is_available()) Could you please explain more on this to me so that there will be less potential problems in my code. Thank you so much! Pytorch is a "py.typed" library, which means that it includes a "py.typed" file within its root directory. When such a file is present, a library indicates that it has type information. It also means that the library must follow certain conventions that indicate which symbols are meant to be part of the public interface contract and which are meant to be private implementation details. For details, refer to this documentation. In the case of Pytorch, the torch/__init__.py file indicates that the backends submodule is not re-exported from the top-level module. Therefore, you need to import it with an explicit import torch.backends statement within your code. If the backends submodule is intended to be re-exported from the top-level module, the torch/__init__.py file will need to be updated to indicate this. You could file a bug report in the Pytorch github project. Got it! Thank you very much for your reply. Hi @erictraut, thanks for your explanation. However, I'm still kind of confused how I should deal with this kind of "error" messages. The very begining import torch torch.backends.cuda.matmul.allow_tf32 = False ^^^^^^^^ torch.backends.cudnn.allow_tf32 = False ^^^^^^^^ If I import torch.backends, then import torch.backends torch.backends.cuda.matmul.allow_tf32 = False ^^^^ torch.backends.cudnn.allow_tf32 = False ^^^^^ and then import torch.backends.cuda import torch.backends.cudnn torch.backends.cuda.matmul.allow_tf32 = False torch.backends.cudnn.allow_tf32 = False ^^^^^^^^^^ The last of those code blocks is correct. It works for me without any type errors. If you're seeing an error here, I suspect it's because you have an older version of torch that has a bug. If you upgrade to torch 1.12.1, it should work fine. Thank you. You are right, I'm using torch 1.11.0.
gharchive/issue
2022-07-17T05:18:22
2025-04-01T06:39:35.563031
{ "authors": [ "erictraut", "fang-d", "yzhang-gh" ], "repo": "microsoft/pylance-release", "url": "https://github.com/microsoft/pylance-release/issues/3058", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
708331133
Pylance not working at all. Language Server version: v2020.9.6 OS and version: ArchLinux, Kernel 5.8.10-arch1-1 Python version (& distribution if applicable, e.g. Anaconda): 3.8.5 VSCode version: 1.49.0 Hi, it's not working at all whatsoever. I did change the languageServer to pylance in settings, I have python pacakge installed Logs python ~/.vscode-oss/extensions/ms-python.python-2020.9.111407/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)" python ~/.vscode-oss/extensions/ms-python.python-2020.9.111407/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)" Error 2020-09-24 20:27:45: Listing Nuget Packages, Class name = d, completed in 1ms, has a falsy return value, Arg 1: "https://pvsc.blob.core.windows.net", Arg 2: "-stable", Arg 3: "", Arg 4: "https://pvsc.azureedge.net", Arg 5: Uri:/tmp/test.py, Return Value: undefined [SyntaxError: Container name format is incorrect. at f (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:184960) at v.t.containerNameIsValid (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:185222) at /home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:410066 at Object.t.validateArgs (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:189467) at z._listBlobsOrDircotriesSegmentedWithPrefix (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:409993) at z.listBlobsSegmentedWithPrefix (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:367960) at /home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:47:313790 at new Promise () at listBlobStoreCatalog (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:47:313768) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:94:5) at async listPackages (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:47:313474)] Error 2020-09-24 20:27:45: Get latest language server nuget package version, Class name = d, completed in 1ms, has a falsy return value, Arg 1: Uri:/tmp/test.py, Arg 2: "0.0.0", Return Value: undefined [SyntaxError: Container name format is incorrect. at f (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:184960) at v.t.containerNameIsValid (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:185222) at /home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:410066 at Object.t.validateArgs (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:189467) at z._listBlobsOrDircotriesSegmentedWithPrefix (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:409993) at z.listBlobsSegmentedWithPrefix (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:367960) at /home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:47:313790 at new Promise () at listBlobStoreCatalog (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:47:313768) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:94:5) at async listPackages (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:47:313474)] { vslsStack: [ CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {} ] } Error 2020-09-24 20:27:45: Get latest version of language server, Class name = f, completed in 2ms, has a falsy return value, Arg 1: Uri:/tmp/test.py, Return Value: undefined [SyntaxError: Container name format is incorrect. at f (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:184960) at v.t.containerNameIsValid (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:185222) at /home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:410066 at Object.t.validateArgs (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:189467) at z._listBlobsOrDircotriesSegmentedWithPrefix (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:409993) at z.listBlobsSegmentedWithPrefix (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/node_modules/azure-storage.js:211:367960) at /home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:47:313790 at new Promise () at listBlobStoreCatalog (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:47:313768) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:94:5) at async listPackages (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:47:313474)] { vslsStack: [ CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {}, CallSite {} ] } Error 2020-09-24 20:27:45: Get language server folder name, Class name = f, completed in 5ms, has a falsy return value, Arg 1: Uri:/tmp/test.py, Return Value: undefined [TypeError: Cannot read property 'version' of undefined at getLanguageServerFolderName (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:24:193095) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:94:5)] Error 2020-09-24 20:27:45: Failed to start language server, Class name = r, completed in 9ms, has a falsy return value, Arg 1: Uri:/tmp/test.py, Arg 2: {"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.5-final","major":3,"minor":8,"patch":5,"prerelease":["final"],"build":[],"version":"3.8.5-final"},"sysPrefix":"/usr","fileHash":"1464759c31e1da69bb7f6ffdb3bb22a39cfef12e58f642c2c193cd404a009bde8f52ade67fd62c17898def6a05c9dc9c3496101e0d1b200a7097d22d98f8f80e","envType":"Unknown","displayName":"Python 3.8.5 64-bit"}, Arg 3: {"documentSelector":[{"scheme":"file","language":"python"},{"scheme":"untitled","language":"python"},{"scheme":"vscode-notebook","language":"python"},{"scheme":"vscode-notebook-cell","language":"python"}],"synchronize":{"configurationSection":"python"},"outputChannel":{"name":"Python Language Server","_channel":{}},"revealOutputChannelOn":4,"middleware":{"configService":{"serviceContainer":{"container":{"options":{"autoBindInjectable":false,"defaultScope":"Transient","skipBaseClassChecks":false},"guid":"f396513f-11a8-c16b-a909-ba29840f2997","_bindingDictionary":{"_map":{}},"_snapshots":[],"_middleware":null,"parent":null,"_metadataReader":{}}},"workspaceService":{}},"lastCaptured":{},"nextWindow":0,"eventCount":0,"workspace":{},"connected":false,"eventName":"LANGUAGE_SERVER.REQUEST"},"connectionOptions":{"cancellationStrategy":{"_sender":{"folderName":"e9f61e331a2b997e6c7e60d9406fd9c97ff531926e"}}}}, Return Value: undefined [TypeError: Cannot read property 'version' of undefined at getLanguageServerFolderName (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:24:193095) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:94:5)] { vslsStack: [ CallSite {}, CallSite {}, CallSite {} ] } Error 2020-09-24 20:27:45: Starting language server, Class name = r, completed in 11ms, has a falsy return value, , Return Value: undefined [TypeError: Cannot read property 'version' of undefined at getLanguageServerFolderName (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:24:193095) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:94:5)] { vslsStack: [ CallSite {}, CallSite {}, CallSite {} ] } Error 2020-09-24 20:27:45: Restarting language server, Class name = r, completed in 12ms, has a falsy return value, , Return Value: undefined [TypeError: Cannot read property 'version' of undefined at getLanguageServerFolderName (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:24:193095) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:94:5)] { vslsStack: [ CallSite {}, CallSite {}, CallSite {} ] } Error 2020-09-24 20:27:45: Failed to restart language server, Class name = r, completed in 12ms, has a falsy return value, , Return Value: undefined [TypeError: Cannot read property 'version' of undefined at getLanguageServerFolderName (/home/behzad/.vscode-oss/extensions/ms-python.python-2020.9.111407/out/client/extension.js:24:193095) at runMicrotasks () at processTicksAndRejections (internal/process/task_queues.js:94:5)] { vslsStack: [ CallSite {}, CallSite {}, CallSite {} ] } Pylance is only supported in official builds of VS Code; you appear to be using "VS Code - OSS" from the Arch repos. See https://github.com/microsoft/pylance-release/issues/135#issuecomment-662607952.
gharchive/issue
2020-09-24T16:59:07
2025-04-01T06:39:35.596661
{ "authors": [ "Bezmehrabi", "jakebailey" ], "repo": "microsoft/pylance-release", "url": "https://github.com/microsoft/pylance-release/issues/413", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
2031268339
Python Django objects manager override not referenceable with intellisense Type: Bug Behaviour Expected vs. Actual Django objects override doesn't hint intellisense like it should. Related VSCode ticket: https://github.com/microsoft/vscode/issues/199917 Steps to reproduce: Steps to Reproduce: This used to function in an older version of VSCode (not sure which one -- has been quite a few updates). Create a Django ParentModel with a objects manager override from django.db import models class ParentModelManager(models.Manager[ModelType]): def get_foo(self) -> str: return "foo" class ParentModel(models.Model): objects = ParentModelManager() class Meta: abstract = True Create a child model that inherits from ParentModel class ChildModel(ParentModel): name = models.TextField() Attempt to reference newly defined function # will get "No definition found for 'get_foo'" when attempting to drill into function ChildModel.objects.get_foo() # can find any native object manager functions like below ChildModel.objects.filter(...) Switching the override in ParentModel to any other name will make it viewable. class ParentModel(models.Model): elements = ParentModelManager() # can now find new function ChildModel.elements.get_foo() # can find any native object manager functions like below ChildModel.elements.filter(...) Diagnostic data Python version (& distribution if applicable, e.g. Anaconda): 3.11.1 Type of virtual environment used (e.g. conda, venv, virtualenv, etc.): Poetry Value of the python.languageServer setting: Pylance Output for Python in the Output panel (View→Output, change the drop-down the upper-right of the Output panel to Python) XXX User Settings languageServer: "Pylance" Extension version: 2023.20.0 VS Code version: Code 1.84.2 (1a5daa3a0231a0fbba4f14db7ec463cf99d7768e, 2023-11-09T10:52:57.054Z) OS version: Darwin arm64 22.5.0 Modes: System Info Item Value CPUs Apple M1 Pro (8 x 24) GPU Status 2d_canvas: enabledcanvas_oop_rasterization: enabled_ondirect_rendering_display_compositor: disabled_off_okgpu_compositing: enabledmultiple_raster_threads: enabled_onopengl: enabled_onrasterization: enabledraw_draw: disabled_off_okvideo_decode: enabledvideo_encode: enabledvulkan: disabled_offwebgl: enabledwebgl2: enabledwebgpu: enabled Load (avg) 3, 3, 3 Memory (System) 16.00GB (0.03GB free) Process Argv --crash-reporter-id 06169d5a-1e47-452b-90c5-74b0abe89e19 Screen Reader no VM 0% A/B Experiments vsliv368:30146709 vsreu685:30147344 python383cf:30185419 vspor879:30202332 vspor708:30202333 vspor363:30204092 vswsl492:30256859 vslsvsres303:30308271 vserr242cf:30382550 pythontb:30283811 vsjup518:30340749 pythonptprofiler:30281270 vshan820:30294714 vstes263:30335439 vscod805:30301674 binariesv615:30325510 bridge0708:30335490 bridge0723:30353136 vsaa593:30376534 pythonvs932:30410667 py29gd2263:30899288 vsclangdc:30486549 c4g48928:30535728 dsvsc012cf:30540253 azure-dev_surveyone:30548225 3biah626:30602489 f6dab269:30613381 a9j8j154:30646983 showlangstatbar:30737416 fixshowwlkth:30771522 showindicator:30805244 pythongtdpath:30769146 i26e3531:30792625 welcomedialogc:30910334 pythonnosmt12:30797651 pythonidxpt:30866567 pythonnoceb:30805159 asynctok:30898717 dsvsc013:30795093 dsvsc014:30804076 dsvsc015:30845448 pythontestfixt:30902429 pyreplss1:30897532 pythonmypyd1:30879173 pythoncet0:30885854 pythontbext0:30879054 accentitlementsc:30887149 dsvsc016:30899300 dsvsc017:30899301 dsvsc018:30899302 aa_t_chat:30882232 dsvsc019cf:30909685 This fixed it. Thanks!
gharchive/issue
2023-12-06T22:18:21
2025-04-01T06:39:35.609035
{ "authors": [ "eronning" ], "repo": "microsoft/pylance-release", "url": "https://github.com/microsoft/pylance-release/issues/5224", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
463966829
When a class inherits from something that is not a class, give a diagnostic error same as inherit-non-class for pylint Failing analysis tests to do with inheritance, so you'll have to figure out what's going on there before we can merge. Reverted. Broke ClassBase test in reference tests - no matter what class derives from AddReference must be called on the base. Also, it is possible to derive from functions, etc so more specific checks are needed.
gharchive/pull-request
2019-07-03T21:44:55
2025-04-01T06:39:35.611096
{ "authors": [ "CTrando", "MikhailArkhipov", "jakebailey" ], "repo": "microsoft/python-language-server", "url": "https://github.com/microsoft/python-language-server/pull/1277", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1400634661
Fix typo Description Fix typo. Motivation and Context #1300 How Has This Been Tested? [ ] Pass the test by running: pytest qlib/tests/test_all_pipeline.py under upper directory of qlib. [ ] If you are adding a new feature, test on your own test scripts. Fix typo in comments. Screenshots of Test Results (if appropriate): Pipeline test: Your own tests: Types of changes [x] Fix bugs [ ] Add new feature [ ] Update documentation @you-n-g This is a typo patch. You can review it very quick. @you-n-g The errors are not related to my commit. How do I fix it? Thanks for your contribution. This CI error may be caused by an issue in windows. I'll merge it first.
gharchive/pull-request
2022-10-07T05:20:38
2025-04-01T06:39:35.615916
{ "authors": [ "ChiahungTai", "you-n-g" ], "repo": "microsoft/qlib", "url": "https://github.com/microsoft/qlib/pull/1308", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1248464170
[ASK] Python version support Want to know if python 3.9 and 3.10 are supported for recommenders package(NAML algo specially) duplicate to https://github.com/microsoft/recommenders/issues/1724
gharchive/issue
2022-05-25T17:55:55
2025-04-01T06:39:35.638728
{ "authors": [ "miguelgfierro", "satsaras" ], "repo": "microsoft/recommenders", "url": "https://github.com/microsoft/recommenders/issues/1723", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
858453557
YARP Bench in internat Describe the bug Bench in internat,performance not good. TestServer(Azure VM 2cpu 8G RAM): ReverseProxy.Direct.Sample (net5) www.test.com:80 is IIS www.test.com:81 is Yarp ,backend is 127.0.0.1:80 TestClient(Local Workstation): ab.exe -n1000 -c100 ping server time=10ms Details AB.exe access IIS directly PS G:> .\ab.exe -n1000 -c100 http://www.test.com/test/echo This is ApacheBench, Version 2.3 <$Revision: 655654 $> Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/ Benchmarking www.test.com (be patient) Completed 100 requests Completed 200 requests Completed 300 requests Completed 400 requests Completed 500 requests Completed 600 requests Completed 700 requests Completed 800 requests Completed 900 requests Completed 1000 requests Finished 1000 requests Server Software: Server Hostname: www.test.com Server Port: 80 Document Path: /test/echo Document Length: 330 bytes Concurrency Level: 100 Time taken for tests: 12.130 seconds Complete requests: 1000 Failed requests: 0 Write errors: 0 Total transferred: 659000 bytes HTML transferred: 330000 bytes Requests per second: 82.44 [#/sec] (mean) Time per request: 1212.987 [ms] (mean) Time per request: 12.130 [ms] (mean, across all concurrent requests) Transfer rate: 53.06 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 3 12 63.1 7 1007 Processing: 13 1160 701.2 807 2865 Waiting: 9 624 622.5 465 2864 Total: 32 1172 704.9 816 2875 Percentage of the requests served within a certain time (ms) 50% 816 66% 857 75% 1812 80% 1837 90% 1886 95% 2844 98% 2864 99% 2869 100% 2875 (longest request) AB.exe access YARP PS G:> .\ab.exe -n1000 -c100 http://www.test.com:81/test/echo This is ApacheBench, Version 2.3 <$Revision: 655654 $> Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/ Benchmarking www.test.com:81(be patient) Completed 100 requests Completed 200 requests Completed 300 requests Completed 400 requests Completed 500 requests Completed 600 requests Completed 700 requests <----- At this time, Server Side Yarp cpu usage from 5%down to 0 Completed 800 requests Completed 900 requests Completed 1000 requests Finished 1000 requests Server Software: Microsoft-IIS/7.5 Server Hostname: www.test.com Server Port: 81 Document Path: /test/echo Document Length: 318 bytes Concurrency Level: 100 Time taken for tests: 92.903 seconds Complete requests: 1000 Failed requests: 3 (Connect: 3, Receive: 0, Length: 0, Exceptions: 0) Write errors: 0 Total transferred: 589979 bytes HTML transferred: 318000 bytes Requests per second: 10.76 [#/sec] (mean) Time per request: 9290.309 [ms] (mean) Time per request: 92.903 [ms] (mean, across all concurrent requests) Transfer rate: 6.20 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 5 30 479.5 9 15011 Processing: 11 9149 23197.2 1943 80003 Waiting: 9 7614 22225.8 604 79987 Total: 21 9178 23198.5 1954 80013 Percentage of the requests served within a certain time (ms) 50% 1954 66% 1995 75% 2005 80% 2010 90% 22994 95% 78998 98% 80002 99% 80004 100% 80013 (longest request) Few comments that may help based on previous experience using ab in situations like this: Looks like your test client (Apache ab) is not reusing connections. If it were, you'd see a line in the output showing Keep-Alive requests: 1000. Without connection reuse, a large portion of your time is likely spent for TCP handshakes (this would be even worse if this was using https). To achieve connection re-use with ab, make sure you pass the -k flag, and make sure the server response is not chunked -- ab uses HTTP/1.0, not HTTP/1.1, and therefore chunked responses also have a Connection: close response header The delays you are seeing are suspiciously close to 21 seconds, the default TCP connection timeout after retries with exponential back-off (3 + 6 + 12 = 21 seconds). It is possible that your second test through YARP incurred SYN-throttling by Azure networks to protect your service from DoS attacks. Reusing connections would also help here, as you wouldn't be establishing this many connections and therefore would not be SYN-throttled. Worst case, if you can't figure this out any other way, you can use a low-level packet sniffer like Wireshark to get to the bottom of this. The source of latencies should be fairly obvious from that. Add -k flag,it seems better. For compare, I add a openresty test. First test YARP,then openresty server:YAPP ab.exe -n1000 -c100 -k http://www.test.com:81/test/echo Server Software: Microsoft-IIS/7.5 Server Hostname: www.test.com Server Port: 81 Document Path: /test/echo Document Length: 317 bytes Concurrency Level: 100 Time taken for tests: 3.913 seconds Complete requests: 1000 Failed requests: 0 Write errors: 0 Keep-Alive requests: 1000 Total transferred: 608256 bytes HTML transferred: 324608 bytes Requests per second: 255.58 [#/sec] (mean) Time per request: 391.265 [ms] (mean) Time per request: 3.913 [ms] (mean, across all concurrent requests) Transfer rate: 151.82 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 1 2.9 0 17 Processing: 35 320 181.6 271 1167 Waiting: 35 320 181.6 271 1167 Total: 41 321 182.5 271 1167 Percentage of the requests served within a certain time (ms) 50% 271 66% 303 75% 398 80% 425 90% 550 95% 710 98% 912 99% 1077 100% 1167 (longest request) server: openresty server{ listen 82; location /{ proxy_pass http://127.0.0.1:80; } } ab.exe -n1000 -c100 -k http://www.test.com:82/test/echo Server Software: openresty/1.19.3.1 Server Hostname: www.test.com Server Port: 82 Document Path: /test/echo Document Length: 317 bytes Concurrency Level: 100 Time taken for tests: 1.305 seconds Complete requests: 1000 Failed requests: 0 Write errors: 0 Keep-Alive requests: 1000 Total transferred: 595000 bytes HTML transferred: 317000 bytes Requests per second: 766.32 [#/sec] (mean) Time per request: 130.494 [ms] (mean) Time per request: 1.305 [ms] (mean, across all concurrent requests) Transfer rate: 445.27 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 1 2.4 0 13 Processing: 5 91 145.3 36 750 Waiting: 4 91 145.3 36 750 Total: 5 92 146.8 36 757 Percentage of the requests served within a certain time (ms) 50% 36 66% 48 75% 61 80% 72 90% 336 95% 415 98% 622 99% 704 100% 757 (longest request) Triage: Looks like there is nothing substantial to follow up on. Feel free to reopen if we missed anything.
gharchive/issue
2021-04-15T03:43:36
2025-04-01T06:39:35.669404
{ "authors": [ "davidni", "issingle", "karelz" ], "repo": "microsoft/reverse-proxy", "url": "https://github.com/microsoft/reverse-proxy/issues/917", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1161644521
Documentation Website Description This PR introduces a documentation website built around Docusaurus v2. It is a website framework with themes, search-indexing, and an rnx-kit-specific landing page. None of the doc content has been written yet. I am planning on using this website framework as a template for rnx-kit and other react-native projects at Microsoft. I've used styling cues from react-native and react-native-windows. In future PRs, I will be adding rnx-kit content. When the site is ready, I will tie in automated-publishing to GitHub pages. Once published, I will change from the local search system to the Algolia DocSearch search service. This will make the search results more relevant and context-sensitive, show snippets of each page, and let me remove the invasive CSS I had to use to make local search match my theme. I'll also turn on localization, and partner with the MS loc team to get the site translated to other languages. Test plan This does not introduce or impact any shipping code. If the existing tests pass, that is enough to prove this PR is good. If you want to see what it looks like, do this: git pull git checkout afoxman/docsite yarn cd docsite yarn build yarn serve re: localisation: https://docusaurus.io/docs/i18n/introduction it's supported but who'd take care of the other languages? Do we have some translator team that we can leverage?
gharchive/pull-request
2022-03-07T16:28:41
2025-04-01T06:39:35.674618
{ "authors": [ "afoxman", "kelset" ], "repo": "microsoft/rnx-kit", "url": "https://github.com/microsoft/rnx-kit/pull/1197", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2201073295
hallo Motivation and Context Description Contribution Checklist [x] I have built and tested the code locally and in a deployed app [x] For frontend changes, I have pulled the latest code from main, built the frontend, and committed all static files. [x] This is a change for all users of this app. No code or asset is specific to my use case or my organization. [x] I didn't break any existing functionality :smile: cool
gharchive/pull-request
2024-03-21T20:05:49
2025-04-01T06:39:35.695717
{ "authors": [ "reshaped-matthijs" ], "repo": "microsoft/sample-app-aoai-chatGPT", "url": "https://github.com/microsoft/sample-app-aoai-chatGPT/pull/716", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
834113982
Add FileWatcher to load sarif logs from .sarif folder automatically for #380 Automatically load all sarif log files from .sarif folder under solution directory to error lists when solution is loaded. Close all sarif logs when solution is closed. Monitor the folder and watch sarif log files created/deleted, load/unload results accordingly. Updates error list when any sarif log file in the folder is updated. Enabled/disable the behavior using option. Abandon this PR since the functionality should be added to sarif viewer not sarifer. Created another PR #382 instead.
gharchive/pull-request
2021-03-17T19:36:40
2025-04-01T06:39:35.697843
{ "authors": [ "yongyan-gh" ], "repo": "microsoft/sarif-visualstudio-extension", "url": "https://github.com/microsoft/sarif-visualstudio-extension/pull/381", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
665047719
File location dialog Tested with 3.2020.715004 When locating sources a FileOpen dialogs pops up, but there is no indication of the path I need to resolve. In Visual Studio extension the location is in the title of the dialog, like Locate missing file: /folder/folder2/file.ext. This way it is convenient to navigate to the root of the sources and then use the information from the title to find the file. Not sure if it is the limitation of integration into VS Code. Another option would be to prefill File name: editbox with the relative path of the missing file. Thanks for the feedback. A bit of a survey: Do you have a folder open in VS Code? And if so, are the SARIF file and "missing" file both in that same folder? Generally asking: what is the typical file structure relationship between your SARIF file and "missing" file? We are trying to understand the common cases better. Thanks! Thanks for the feedback. A bit of a survey: Do you have a folder open in VS Code? Initially no, but then I tried both options. In both cases it doesn't find the find automatically until I locate it manually. Then when I click on other items it finds the corresponding file. And if so, are the SARIF file and "missing" file both in that same folder? Generally asking: what is the typical file structure relationship between your SARIF file and "missing" file? We are trying to understand the common cases better. Thanks! The sarif file is not in the same folder. We have new logic that, in certain cases, is able to automatically associate SARIF uris with workspace uris. Would you be able to share the project structure and the set of uri's within the SARIF file to help reproduce the issue? Note: The matching heuristic looks for distinct file names between the SARIF log and workspace. Thus it may not work if there are many files with the same name. However, we do have some more advanced strategies in our back pocket that we can employ depending on feedback/scenarios such as yours. The file contains sensitive information. I can share it after some time when all issues are fixed. @JarLob Still having the same issues in the most recent version? If so, let's take a look at your folder structure. Thanks!
gharchive/issue
2020-07-24T09:35:35
2025-04-01T06:39:35.702727
{ "authors": [ "JarLob", "jeffersonking" ], "repo": "microsoft/sarif-vscode-extension", "url": "https://github.com/microsoft/sarif-vscode-extension/issues/307", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2019071939
.Net: Example44_MultiChatCompletion needs to be rewritten Describe the bug The example has the following issues: It is broken into multiple methods and so is not copy/paste friendly It uses the IChatCompletion directly, which is not our preferred pattern It doesn't use a prompt as the input for the example All .Net issues prior to 1-Dec-2023 are being closed. Please re-open, if this issue is still relevant to the .Net Semantic Kernel 1.x release. In the future all issues that are inactive for more than 90 days will be labelled as 'stale' and closed 14 days later.
gharchive/issue
2023-11-30T16:47:08
2025-04-01T06:39:35.705283
{ "authors": [ "markwallace-microsoft" ], "repo": "microsoft/semantic-kernel", "url": "https://github.com/microsoft/semantic-kernel/issues/3786", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
589420314
How are PowerShell help files generated for this repository? I see that Microsoft.ServiceFabric.Powershell.Http-Help.xml is stored in the repository, and the build depends on this file's presence. Are you able to share how this file is generated? As far as I can tell, the build isn't responsible for it, and no generation tools are referenced by the repository. Thank you for making this module available! @andrewtyped The rest api and powershell is generated usign a tool leveraging AutoRest from the swagger rest api specification for service fabric. Thank you. Is this the tool you're referring to: https://github.com/Azure/autorest.powershell ? If so, would you accept a PR updating the docs to refer to this dependency? No thats not we use exactly, the tool does use Autorest to generate the models from swagger, but then it generates customized code based on extensions specified in the swagger files, the entire client library in this repo has customized serialization/deserialization logic.
gharchive/issue
2020-03-27T21:23:43
2025-04-01T06:39:35.707720
{ "authors": [ "amanbha", "andrewtyped" ], "repo": "microsoft/service-fabric-client-dotnet", "url": "https://github.com/microsoft/service-fabric-client-dotnet/issues/85", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
759981328
Fix a memory leaks with windows Process handling Process implements IDisposable. Every object returned by Process.GetProcessById() will keep lingering in heap until a service instance restarts. Thanks for catching these. I have made changes to the upcoming release. These will live in the plugin-refactoring branch, which houses 3.1.0 (which includes a refactored FO API .NET Standard 2.0 library). That branch will be merged into develop then master in the next few days. Appreciate the bugs! I have merged plugin-refactoring branch into develop. Going to close this PR as it is not going to be merged. As I mentioned, I took your changes already. Thanks again. Thanks Charles! Appreciate your review!
gharchive/pull-request
2020-12-09T04:28:17
2025-04-01T06:39:35.709928
{ "authors": [ "GitTorre", "agolotin" ], "repo": "microsoft/service-fabric-observer", "url": "https://github.com/microsoft/service-fabric-observer/pull/98", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1446409443
Terminal keeps disappearing when laptop sleeps Windows Terminal version 1.15.2875.0 Windows build number 10.0.22000.1098 Other Software No response Steps to reproduce Open terminal and let the computer to sleep off and once woken up, the terminal will vanish. Same behavior with battery and charger connected. Note: This issue has started with the recent windows update. Expected Behavior Terminal should persist the state and behavior and not get closed. Actual Behavior Terminal seems to be missing/vanished, process seems to be running sometime (few mins even when the Terminal is missing) in background but eventually stops in some time. Does the terminal disappear every single time you sleep or only sometimes? Does your device need to sleep for a long time for the terminal to disappear? Do you see any events in Event Viewer ala "‎The power manager has not requested the deletion of all entries‎" / "‎The power manager has requested the deletion of all entries‎"/? See also #12513. Can you try setting "closeOnExit": "never" in the settings? Maybe pwsh.exe is crashing, exiting, causing the Terminal to "crash". It's also possible that the Store may have noticed that there was an update available for the Terminal, and chose to update it for you right as it was going to sleep / resuming from sleep. If this happens literally every sleep, then we can probably rule this out. Does the terminal disappear every single time you sleep or only sometimes? Does your device need to sleep for a long time for the terminal to disappear? It only happens when the sleep is longer then 4 to 5 mins, few mins in sleep does not kill the terminal Do you see any events in Event Viewer ala "‎The power manager has not requested the deletion of all entries‎" / "‎The power manager has requested the deletion of all entries‎"/? See also #12513. Can you try setting "closeOnExit": "never" in the settings? Maybe pwsh.exe is crashing, exiting, causing the Terminal to "crash". It's also possible that the Store may have noticed that there was an update available for the Terminal, and chose to update it for you right as it was going to sleep / resuming from sleep. If this happens literally every sleep, then we can probably rule this out. Tried "closeOnExit": "never", there is no change in the behavior and also there is no update to Terminal available in store and the issue literally happens for every sleep but only when a process is running (let's say you run an angular app or any process that runs longer). When the terminal is open without any process running, it seems to remain alive. Checked the Event Logs, nothing related to Terminal or power manager. We'd love to get some additional information. Would you mind filing this in feedback hub? /feedback
gharchive/issue
2022-11-12T11:28:33
2025-04-01T06:39:35.717597
{ "authors": [ "AravindhKumarSivaramakrishnan", "carlos-zamora", "lhecker", "zadjii-msft" ], "repo": "microsoft/terminal", "url": "https://github.com/microsoft/terminal/issues/14377", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1590578136
Rendering of some escape codes are broken on some fonts Windows Terminal version 1.16.10261.0, also main branch Windows build number 10.0.19044.2364 Other Software Most TUI programs Steps to reproduce The screenshot below uses make menuconfig on Linux kernel source and tool aptitude, but many TUI applications show this behavior as well. Try using some with specific fonts and you will spot it. Expected Behavior Might be the most ambiguous issue title I've written in a while, but I'm not quite sure what's causing it. I'll explain below. (Warning, lots of screenshots) When using common monospaced fonts, the rendering is fine: Consolas: Lucida Console: and a third-party one: MxPlus IBM VGA font: Actual Behavior However, when using some fonts (didn't find out the specifics here), the rendering is borked. Notice that the checkboxes are not aligned anymore, some characters are missing, and the window borders are broken: PC-98 font: That's a third-party font, however some standard fonts are showing this as well: SimHei: MS Gothic: Tried with AtlasEngine both on and off and nothing changed (it didn't need a restart right?). Forgot about the aptitude example, but it's like this: Tried with AtlasEngine both on and off and nothing changed (it didn't need a restart right?). FWIW it absolutely does require a restart of that tab, unfortunately. One of the few settings that can't hot-reload. Double checking these results with it both enabled and disabled might help point at the right root cause. I'm sure there's a dupe laying around that @lhecker can find. Probably one for each of the renderers 😅 Just tried and the rendering is broken on both situations: AtlasEngine off: AtlasEngine on: Also it might be a good idea to add a description below to indicate that this specific setting needs a restart (or a new tab) to take effect: I'm about to open a PR which improves the situation around such box drawing characters up to the point, where we draw to the best capabilities of the font you've chosen. If the font doesn't have proper box drawing characters, they'll look broken, because that's what the font tells us to do. This is for instance the case for MS Gothic, where the right border in make menuconfig will appear invisible, because that's what MS Gothic tells us to do: For further improvements we'll have to wait for #5897.
gharchive/issue
2023-02-19T06:10:57
2025-04-01T06:39:35.728847
{ "authors": [ "HarukaMa", "lhecker", "zadjii-msft" ], "repo": "microsoft/terminal", "url": "https://github.com/microsoft/terminal/issues/14877", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
691446915
"Disable Scroll-Forward" doesn't account for page-up/page-down keys Environment Windows build number: 10.0.19041.0 Steps to reproduce Start PowerShell in conhost. Enable "Disable Scroll-Forward". Run a command that produces multiple screens of output. Use the page-up key to scroll to the top of the output. Use the page-down key to scroll past the output. Expected behavior Scrolling it limited to the output and the scrollbar lets you scroll the output. Actual behavior After running command, scrollbar is as expected: After page-up key once, scrollbar is indeterminate: After page-up key again, scrollbar indicates that you see all the output (but you don't): After page-down key, you have scrolled past the end of the output: So I've got some unfortunate news! PowerShell (specifically PSReadline) has implemented its own handling for PgUp/PgDown: In these handlers (code here), they're directly manipulating the console screen buffer. Because they're setting the actual active viewport using these APIs, there's nothing we can really do but listen to them. If they want to scroll the viewport into the unpopulated region below the virtual bottom, they're fully allowed to do so. Resolution on this one is, regrettable, "by design" -- we have to support these APIs forever, even if they coincide with our experimental features in an unfortunate way.
gharchive/issue
2020-09-02T21:44:25
2025-04-01T06:39:35.735191
{ "authors": [ "DHowett", "carlreinke" ], "repo": "microsoft/terminal", "url": "https://github.com/microsoft/terminal/issues/7514", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
892266116
Set keyword flags on all events so those sharing a provider with telemetry do not fire unless tracing is enabled Set keyword flags on all events so those sharing a provider with telemetry do not fire unless tracing is enabled PR Checklist [x] Closes #10093 [x] I work here [ ] Tests added/passed [x] Documentation added in til.h about how keywords work and at the only other site of keywords we define in the Host project tracing files. Detailed Description of the Pull Request / Additional comments I initially thought that we would need to split providers here to accomplish this... but @DHowett helped me realize that might be a lot of additional metadata and bloat binary size. So with help from a friend from fundamentals, I realized that we could use Keywords to differentiate here. We can no longer define 0 keywords as that represents an any/all scenario. Every TraceLoggingWrite event now needs a keyword. When our events have a keyword, they're not included in any trace. Additionally, when we have an explicit keyword to check that is different from the ones used for the telemetry pipeline, we can ensure that we only do "hard work" to generate debug trace data when an "ALL" type listener like TraceView or Windows Performance Recorder with our profiles is listening to these providers for ALL keyworded events. Validation Steps Performed [x] - Built with full release build config to confirm performance is worse than dev builds BECAUSE of the telemetry event collector camping our provider and triggering full trace event generation on shared providers. [x] - Built with full release build config to enable statistics collection and validated trace event collection is excluded and trace event short-circuits work with this change. [ ] - Checked that TraceView still sees both telemetry and tracing events [ ] - Checked that WPR with our .wprp profile sees both telemetry and tracing events Bonuses: Added privacy tagging where I noticed it was missing (so we no longer have to confirm those tags on the back end) Updated wprp file for Terminal providers that are missing but didn't rename the wprp file nit: shorten PR title to ~72 chars so it doesn't get truncated @msftbot wait 5 minutes before merging
gharchive/pull-request
2021-05-14T21:49:27
2025-04-01T06:39:35.742243
{ "authors": [ "DHowett", "miniksa" ], "repo": "microsoft/terminal", "url": "https://github.com/microsoft/terminal/pull/10098", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1192235421
Autocomplete keyframe animations when occluded on Windows 11 On certain builds of Windows, when Terminal is set as the default it will accumulate an unbounded amount of queued animations while the screen is off and it is servicing window management for console applications. This results in Terminal hanging when left overnight, as it has millions of animations to process. The new call into TerminalThemeHelpers will tell our compositor to automatically complete animations that are scheduled while the screen is off. Fixes MSFT-38506980 For servicing, this actually needs custom conflict resolution since this PR is built on the Common Nuget infrastructure. @msftbot merge this in 3 minutes
gharchive/pull-request
2022-04-04T19:45:05
2025-04-01T06:39:35.745030
{ "authors": [ "DHowett" ], "repo": "microsoft/terminal", "url": "https://github.com/microsoft/terminal/pull/12820", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1466209654
Update to check-spelling v0.0.21 Upgrades check-spelling to v0.0.21 The command to apply changes should now work on Windows (it requires Perl, but I believe that's more or less present most of the time, and it should walk you through the rest of the required tools). There are a bunch of new features, the most important here are probably being able to update the metadata from Windows. (If it doesn't work, please @ me). Also, candidate.patterns will automatically suggest patterns. You can see them in patterns.txt, e.g.: # Automatically suggested patterns # hit-count: 3831 file-count: 582 # IServiceProvider \bI(?=(?:[A-Z][a-z]{2,})+\b) The metadata bits (the hit count/file count) don't have to be retained (I hope they'll be useful in deciding whether/or not to add a pattern, i.e. "how applicable is it?"), the comment hinting at what the pattern does is probably worth retaining. We've been using more or less this version for a while internally (including talk-to-bot, and, I do have a pattern that could be used to let people use that in forks, but, I'm going to skip that for now). This weekend, I did some cleanup for act (to run check-spelling locally), and some minor polish. You can see the runs I made in https://github.com/check-spelling/terminal/actions Thanks. You're going to want to reenable the workflow :) indeed, i'm going to reflect the changes to all open branches first (: thanks @floh96 Well, it turns out that we have 335 branches. Good lord. They've all been updated to check-spelling@v0.0.21. Thanks again!
gharchive/pull-request
2022-11-28T10:55:06
2025-04-01T06:39:35.750193
{ "authors": [ "DHowett", "jsoref" ], "repo": "microsoft/terminal", "url": "https://github.com/microsoft/terminal/pull/14455", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2301565941
Allow actions in the new tab dropdown Summary of the Pull Request Targets #17215 Allows the user to define entries in the new tab menu that execute actions, based on their action Id Detailed Description of the Pull Request / Additional comments For example, the newTabMenu in the json can now contain: { "type": "action", "actionId": "mySendInputAction" } Validation Steps Performed PR Checklist [ ] Closes #xxx [ ] Tests added/passed [ ] Documentation updated If checked, please file a pull request on our docs repo and link it here: #xxx [ ] Schema updated (if necessary) YAAAAAAAAAAAAAAASS AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA may want to add a "closes #3759" may want to add a closes #3759 closes #9362 Very explicitly, you need to put them on separate lines both of which start with "Closes". Validation Steps Performed Can I assign an icon to a command? Can I assign an icon to a command? Yep!
gharchive/pull-request
2024-05-16T23:57:11
2025-04-01T06:39:35.756431
{ "authors": [ "DHowett", "PankajBhojwani", "erikzhang", "zadjii-msft" ], "repo": "microsoft/terminal", "url": "https://github.com/microsoft/terminal/pull/17281", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1172058172
Getting DataSource object right is very difficult Description I was trying to get the new UI in VS for data driven tests. And getting the object for the data source to correctly serialize is so painful. My contains other objects and getting it to work took me a lot of time. Is there any additional guidance on this? Or a method that can check if the type is eligible for the new UI? From what I see: Get Set properties need to be used, and default constructor must be present. [Serialize] needs to be used for all the objects. Abstract class must not be used. When inheriting, the objects must be produced exactly using the type that is used in the data source object, but not as any child class. Using records or readonly record struct does not make this easier. I could not get it to work when there was a collection on the object, but I might be just confused by some other edge case that was preventing me from getting this to work at the same time. e.g. This works: [Serializable] public class OtherInfo : OtherInfoBase { } [Serializable] public class OtherInfoBase { public string Name {get; set;} } [Serializable] public class RunnerInfo { public string Name {get; set;} public OtherInfo {get; set;} } BUT making the RunnerInfo use the Base class, it only works when we assign the BaseClass itself, but not if we create OtherInfo and assign it: [Serializable] public class OtherInfo : OtherInfoBase { } [Serializable] public class OtherInfoBase { public string Name {get; set;} } [Serializable] public class RunnerInfo { public string Name {get; set;} public OtherInfoBase {get; set;} } @nohwnd What kind of data source are you referring to? Could you provide a more complete example? DataSource like the one here: https://github.com/microsoft/vstest/blob/3fac63690f8cd14e2681470639b15c527c3d09ff/test/Microsoft.TestPlatform.AcceptanceTests/ExecutionTests.cs#L21 Once your parameter is not a primitive type (RunnerInfo in the case above) it gets really difficult to make sure MSTest will expand it to multiple test cases using the new top level expansion. You need to balance all the things listed above. @Evangelink - Is this something that can be checked with a MSTest analyzer? After working for a while on the codebase I think this mostly boils down to the serializer that is used. It would be pretty difficult to enforce the rules by analyzer, and custom data sources are imho not that used to warrant that investment.
gharchive/issue
2022-03-17T08:10:54
2025-04-01T06:39:35.762060
{ "authors": [ "Evangelink", "nohwnd", "stan-sz" ], "repo": "microsoft/testfx", "url": "https://github.com/microsoft/testfx/issues/1054", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2519213841
Typo in MSTEST0016 description Describe the bug https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/mstest0016 Rule description A test class should have at least one test method or be static and have methods that are attributed with [AssemblyInitialization] or [AssemblyCleanup]. States AssemblyInitialization, but it should be AssemblyInitialize. Additional context MSTest 3.6.0 We will be releasing a bug fix so I'll bakcport this fix into it.
gharchive/issue
2024-09-11T09:45:57
2025-04-01T06:39:35.764261
{ "authors": [ "Evangelink", "Mertsch" ], "repo": "microsoft/testfx", "url": "https://github.com/microsoft/testfx/issues/3807", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2729339879
MSTEST0017 (Assertion arguments should be passed in the correct order) shouldn't warn if both arguments are literals Describe the bug If both arguments are literals, e.g: Assert.AreEqual(0, 1); we currently issue a warning, but following the codefix will still keep the warning. We shouldn't issue a diagnostic when "both" arguments look like they should be "expected". Currently, the above snippet will already produce MSTEST0025 (Use 'Assert.Fail' instead of an always-failing 'Assert.AreEqual' assert). I agree!
gharchive/issue
2024-12-10T08:08:14
2025-04-01T06:39:35.766010
{ "authors": [ "Evangelink", "Youssef1313" ], "repo": "microsoft/testfx", "url": "https://github.com/microsoft/testfx/issues/4299", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
662236640
User/t ayb/geo process graphic2 Created the Geo Process Graphic Component I'm trying to check out the geo process graphic (running locally on this PR branch) with this example https://insights-local.timeseries.azure.com/withplatform/geoProcessGraphic.html When I hit that page I get a promise error from HistoryPlayback. @AyobamiBalogun, how can I view the geo graphic? Is that the correct example page? I'm trying to check out the geo process graphic (running locally on this PR branch) with this example https://insights-local.timeseries.azure.com/withplatform/geoProcessGraphic.html When I hit that page I get a promise error from HistoryPlayback. @AyobamiBalogun, how can I view the geo graphic? Is that the correct example page? @darsney Do you know why I'm getting this error when I try to access the geoProcessGraphic? If it's just me, I don't think it's an issue for this PR, I'm just not able to test the graphic. It may be something to do with me not having access to the right env.
gharchive/pull-request
2020-07-20T20:34:28
2025-04-01T06:39:35.769583
{ "authors": [ "AyobamiBalogun", "ccrowley96" ], "repo": "microsoft/tsiclient", "url": "https://github.com/microsoft/tsiclient/pull/256", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1157054136
When will DeepNorm release code ? As the title asks. The code will be updated at https://github.com/microsoft/unilm/tree/master/deepnet soon Thanks. Any updates here? The code will be ready very soon. Please stay tuned! @sean-zhuh @iiLaurens https://github.com/microsoft/torchscale
gharchive/issue
2022-03-02T11:19:51
2025-04-01T06:39:35.772240
{ "authors": [ "donglixp", "iiLaurens", "sean-zhuh", "shumingma" ], "repo": "microsoft/unilm", "url": "https://github.com/microsoft/unilm/issues/639", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1677037918
Fix error Removing duplicate headerID field Thanks!
gharchive/pull-request
2023-04-20T16:20:09
2025-04-01T06:39:35.772994
{ "authors": [ "raprice", "ras0219-msft" ], "repo": "microsoft/vcpkg-docs", "url": "https://github.com/microsoft/vcpkg-docs/pull/69", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1426350441
Change the mismatched VCPKG_ROOT message to note which vcpkg.exe … is emitting the message for clarity. Thanks for the reviews folks!
gharchive/pull-request
2022-10-27T22:46:15
2025-04-01T06:39:35.773799
{ "authors": [ "BillyONeal" ], "repo": "microsoft/vcpkg-tool", "url": "https://github.com/microsoft/vcpkg-tool/pull/775", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
682829256
[google-breakpad] x64-linux. Build success but no symbol in lib Describe the bug Build breakpad was successful, but can't find symbol in the static lib. error : undefined reference to google_breakpad::ExceptionHandler::ExceptionHandler(google_breakpad::MinidumpDescriptor const&, bool (*)(void*), bool (*)(google_breakpad::MinidumpDescriptor const&, void*, bool), void*, bool, int)' error : undefined reference to google_breakpad::ExceptionHandler::~ExceptionHandler()' Environment OS: [Linux] To Reproduce 1 ./vcpkg install breakpad:x64-linux 2 copy https://github.com/linux-on-ibm-z/linux-syscall-support/blob/master/linux_syscall_support.h into x64-linux/include/third_party/lss/ 3 use bottom code for test. 4 error : undefined reference to google_breakpad::ExceptionHandler::ExceptionHandler(google_breakpad::MinidumpDescriptor const&, bool (*)(void*), bool (*)(google_breakpad::MinidumpDescriptor const&, void*, bool), void*, bool, int)' error : undefined reference to google_breakpad::ExceptionHandler::~ExceptionHandler()' 5 nm -an x64-linux/debug/lib/liblibbreakpadd.a | c++filt | grep "ExceptionHandler(" cannot find the symbol Test code #include <cstdio> #include <client/linux/handler/exception_handler.h> using namespace std; using namespace google_breakpad; static bool dumpCallback(const google_breakpad::MinidumpDescriptor& descriptor, void* context, bool succeeded) { printf("Dump path: %s\n", descriptor.path()); return succeeded; } void crash() { volatile int* a = (int*)(NULL); *a = 1; } int main(int argc, char* argv[]) { google_breakpad::MinidumpDescriptor descriptor("/tmp"); google_breakpad::ExceptionHandler eh(descriptor, nullptr, dumpCallback, nullptr, true, -1); crash(); return 0; } The exception handler in libbreakpad_client which does not build on non-windows now. See commnents in https://github.com/microsoft/vcpkg/blob/master/ports/breakpad/CMakeLists.txt#L40, it seems the libbreakpad_client target does not work on non-windows. I will take a look if it supports with latest source.
gharchive/issue
2020-08-20T15:44:30
2025-04-01T06:39:35.780947
{ "authors": [ "PhoebeHui", "hanyukang" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/issues/13030", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
697081755
qt5:x64-windows build failure Host Environment OS: Windows MSVC 19.28 To Reproduce Steps to reproduce the behavior: ./vcpkg install qt5:x64-windows Failure logs CMake Error at scripts/cmake/vcpkg_execute_build_process.cmake:139 (message): Command failed: C:/Development/Arcane/vcpkg/downloads/tools/jom/jom-1.1.3/jom.exe /J 9 Working Directory: C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-rel See logs for more information: C:\Development\Arcane\vcpkg\buildtrees\qt5-base\build-x64-windows-rel-out.log C:\Development\Arcane\vcpkg\buildtrees\qt5-base\build-x64-windows-rel-err.log C:\Development\Arcane\vcpkg\buildtrees\qt5-base\build-x64-windows-rel-out-1.log C:\Development\Arcane\vcpkg\buildtrees\qt5-base\build-x64-windows-rel-err-1.log Call Stack (most recent call first): ports/qt5-base/cmake/install_qt.cmake:66 (vcpkg_execute_build_process) ports/qt5-base/portfile.cmake:299 (install_qt) scripts/ports.cmake:79 (include) Error: Building package qt5-base:x64-windows failed with: BUILD_FAILED Please ensure you're using the latest portfiles with `.\vcpkg update`, then submit an issue at https://github.com/Microsoft/vcpkg/issues including: Package: qt5-base:x64-windows Vcpkg version: 2020.06.15-nohash Message in build-x64-windows-rel-err.log jom 1.1.3 - empower your cores cl : Command line warning D9025 : overriding '/Fo./' with '/Foqlibraryinfo_final.obj' WARNING: Failure to find: C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-rel/src/corelib/qt5core_metatypes.json WARNING: Failure to find: C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-rel/src/corelib/qt5cored_metatypes.json C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\kernel\qobjectdefs.h(0): Note: No relevant classes found. No output generated. WARNING: Failure to find: C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-rel/src/gui/qt5gui_metatypes.json WARNING: Failure to find: C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-rel/src/gui/qt5guid_metatypes.json jom: C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\src\tools\uic\Makefile.Release [..\..\..\bin\uic.exe] Error 1104 jom: C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\src\tools\uic\Makefile [release] Error 2 jom: C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\src\Makefile [sub-uic-make_first] Error 2 C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\network\access\qnetworkaccessdebugpipebackend_p.h(0): Note: No relevant classes found. No output generated. jom: C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\Makefile [sub-src-make_first] Error 2 Additional context also needs build-x64-windows-rel-out-1.log or build-x64-windows-rel-out.log. Error 1104 indicates a linkage error. build-x64-windows-rel-out.log Too big ^ build-x64-windows-rel-out-1.log cd src\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\src.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile cd tools\bootstrap\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\tools\bootstrap\bootstrap.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd tools\moc\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\tools\moc\moc.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd tools\rcc\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\tools\rcc\rcc.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd tools\tracegen\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\tools\tracegen\tracegen.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd corelib\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\corelib.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd tools\qlalr\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\tools\qlalr\qlalr.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd winmain\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\winmain\winmain.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd network\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\network\network.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd sql\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\sql\sql.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd xml\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\xml\xml.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd tools\qvkgen\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\tools\qvkgen\qvkgen.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release cd tools\uic\ && ( if not exist Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-rel\bin\qmake.exe -o Makefile C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\tools\uic\uic.pro ) && C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile C:\Development\Arcane\vcpkg\downloads\tools\jom\jom-1.1.3\jom.exe -f Makefile.Release link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /VERSION:5.15 /MANIFEST:embed /OUT:..\..\..\bin\uic.exe @"C:\Users\Sam Huang\AppData\Local\Temp\uic.exe.28592.31.jom" LINK : fatal error LNK1104: cannot open file '..\..\..\bin\uic.exe' looks like an antivirus issue. Can you make sure that your AV did not remove said executable? If my Antivirus (Bitdefender) were to do anything, it'd at least give me a notification, and I have checked, nothing removed in the time I tried to install Qt via vcpkg. I can try turning it off and see what happens. Still the exact same error. The antivirus does not affect this. Could also be a disk space error. But I would scan both debug/release logs for the uic.exe build. uic.exe is missing for release configuration... uic.exe is missing for release configuration... it shouldn't be missing since it should be built as part of the build. So the question is why it is either not built or why it is removed. That why I said you need to check the logs and look for the uic.exe build. If it is built but not there than it is removed by your AV somehow. It seems like its building successfully in logs, and then suddenly not being able to access it. I have turned off the Antivirus and everything, but it won't link. I can only wonder if somebody else has the same issue... @sam20908 same issue, fresh Win 10 installation in a VMWare VM. However, I have these issues only when vcpkg is working in a directory that is on a network drive. I suspect some foul play on VMWare end, as after moving that folder directly onto the VM itself without any further changes and re-issuing vcpkg install (with binarycaching enabled) it resumed and continued to build the ports just fine. Does #13537 fixed this issue? Hmm my vcpkg folder is not on a network drive, so I still can't really figure it out. @JackBoosY Maybe I have to wait for that pull request to get merged to be able to test it? @sam20908 You can just pull these changes on your local branch and test it. @JackBoosY It causes different errors: CMake output: CMake Error at scripts/cmake/vcpkg_execute_required_process.cmake:85 (message): Command failed: C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/configure.bat -confirm-license -opensource -verbose -system-zlib -system-libjpeg -system-libpng -system-freetype -system-pcre -system-doubleconversion -system-sqlite -system-harfbuzz -icu -no-angle -opengl dynamic -nomake examples -nomake tests LIBJPEG_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/jpegd.lib ZLIB_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib "LIBPNG_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib" PCRE2_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/pcre2-16d.lib "FREETYPE_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/freetyped.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib BROTLI_ENC_DEBUG-NOTFOUND BROTLI_DEC_DEBUG-NOTFOUND BROTLI_COMMON_RELEASE-NOTFOUND" "ICU_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icuind.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icutud.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icuucd.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icuiod.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icudtd.lib Advapi32.lib" QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib "PSQL_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpq.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libssl.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libcrypto.lib ws2_32.lib secur32.lib advapi32.lib shell32.lib crypt32.lib user32.lib gdi32.lib" SQLITE_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/sqlite3.lib "HARFBUZZ_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/harfbuzz.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/freetyped.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib BROTLI_ENC_DEBUG-NOTFOUND BROTLI_DEC_DEBUG-NOTFOUND BROTLI_COMMON_RELEASE-NOTFOUND" "OPENSSL_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libssl.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libcrypto.lib ws2_32.lib secur32.lib advapi32.lib shell32.lib crypt32.lib user32.lib gdi32.lib" -debug -prefix C:/Development/Arcane/vcpkg/installed/x64-windows -extprefix C:/Development/Arcane/vcpkg/installed/x64-windows -hostprefix C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug -hostlibdir C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug/lib -hostbindir C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug/bin -archdatadir C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug -datadir C:/Development/Arcane/vcpkg/installed/x64-windows/share/qt5/debug -plugindir C:/Development/Arcane/vcpkg/installed/x64-windows/debug/plugins -qmldir C:/Development/Arcane/vcpkg/installed/x64-windows/debug/qml -headerdir C:/Development/Arcane/vcpkg/installed/x64-windows/include -libexecdir C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug -bindir C:/Development/Arcane/vcpkg/installed/x64-windows/debug/bin -libdir C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib -I C:/Development/Arcane/vcpkg/installed/x64-windows/include -L C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib -L C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link -xplatform win32-msvc Working Directory: C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg Error code: 3 See logs for more information: C:\Development\Arcane\vcpkg\buildtrees\qt5-base\config-x64-windows-dbg-out.log C:\Development\Arcane\vcpkg\buildtrees\qt5-base\config-x64-windows-dbg-err.log Call Stack (most recent call first): ports/qt5-base/cmake/configure_qt.cmake:110 (vcpkg_execute_required_process) ports/qt5-base/portfile.cmake:299 (configure_qt) scripts/ports.cmake:79 (include) config-x64-windows-dbg-out.log Bootstrapping qmake ... cl -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE -c -Yc -Fpqmake_pch.pch -TP C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\qmake_pch.h qmake_pch.h cl -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DQT_BUILD_QMAKE_BOOTSTRAP C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\global\qlibraryinfo.cpp qlibraryinfo.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\project.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\main.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\option.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\property.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\meta.cpp project.cpp main.cpp option.cpp property.cpp meta.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library\ioutils.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library\proitems.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library\qmakevfs.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library\qmakeglobals.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library\qmakeparser.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library\qmakeevaluator.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library\qmakebuiltins.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library\registry.cpp ioutils.cpp proitems.cpp qmakevfs.cpp qmakeglobals.cpp qmakeparser.cpp qmakeevaluator.cpp qmakebuiltins.cpp registry.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\makefile.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\projectgenerator.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\makefiledeps.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\metamakefile.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\xmloutput.cpp makefile.cpp projectgenerator.cpp makefiledeps.cpp metamakefile.cpp xmloutput.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix\unixmake.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix\unixmake2.cpp unixmake.cpp unixmake2.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32\mingw_make.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32\winmakefile.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32\msvc_nmake.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32\msvc_vcproj.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32\msvc_vcxproj.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32\msvc_objectmodel.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32\msbuild_objectmodel.cpp mingw_make.cpp winmakefile.cpp msvc_nmake.cpp msvc_vcproj.cpp msvc_vcxproj.cpp msvc_objectmodel.cpp msbuild_objectmodel.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\tools\qbitarray.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\tools\qcryptographichash.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\tools\qarraydata.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\tools\qhash.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\tools\qringbuffer.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\tools\qlist.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\tools\qversionnumber.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\tools\qmap.cpp qbitarray.cpp qcryptographichash.cpp qarraydata.cpp qhash.cpp qringbuffer.cpp qlist.cpp qversionnumber.cpp qmap.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qbuffer.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfilesystementry.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfilesystemengine.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfilesystemengine_win.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfilesystemiterator_win.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfsfileengine.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfsfileengine_iterator.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qdir.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qdiriterator.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfiledevice.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfile.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qtemporaryfile.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qabstractfileengine.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfsfileengine_win.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qfileinfo.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qiodevice.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qdebug.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qsettings.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\io\qsettings_win.cpp qbuffer.cpp qfilesystementry.cpp qfilesystemengine.cpp qfilesystemengine_win.cpp qfilesystemiterator_win.cpp qfsfileengine.cpp qfsfileengine_iterator.cpp qdir.cpp qdiriterator.cpp qfiledevice.cpp qfile.cpp qtemporaryfile.cpp qabstractfileengine.cpp qfsfileengine_win.cpp qfileinfo.cpp qiodevice.cpp qdebug.cpp qsettings.cpp qsettings_win.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qbytearray.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qbytearraylist.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qvsnprintf.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qbytearraymatcher.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qlocale.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qlocale_tools.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qlocale_win.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qregexp.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qstring.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qstringlist.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\text\qstringbuilder.cpp qbytearray.cpp qbytearraylist.cpp qvsnprintf.cpp qbytearraymatcher.cpp qlocale.cpp qlocale_tools.cpp qlocale_win.cpp qregexp.cpp qstring.cpp qstringlist.cpp qstringbuilder.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\time\qcalendar.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\time\qdatetime.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\time\qgregoriancalendar.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\time\qromancalendar.cpp qcalendar.cpp qdatetime.cpp qgregoriancalendar.cpp qromancalendar.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\plugin\qsystemlibrary.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\plugin\quuid.cpp qsystemlibrary.cpp quuid.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\global\qendian.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\global\qglobal.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\global\qmalloc.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\global\qoperatingsystemversion.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\global\qoperatingsystemversion_win.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\global\qrandom.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\global\qnumeric.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\global\qlogging.cpp qendian.cpp qglobal.cpp qmalloc.cpp qoperatingsystemversion.cpp qoperatingsystemversion_win.cpp qrandom.cpp qnumeric.cpp qlogging.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\codecs\qutfcodec.cpp qutfcodec.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\kernel\qsystemerror.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\kernel\qvariant.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\kernel\qmetatype.cpp qsystemerror.cpp qvariant.cpp qmetatype.cpp cl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./ -Fdqmake.pdb -W2 -nologo -O2 /MP /wd4577 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\library -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\unix -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\win32 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\qmake\generators\mac -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/src/3rdparty/tinycbor/src -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0 -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean/include\QtCore\5.15.0\QtCore -I..\src\corelib\global -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -DQT_VERSION_STR=\"5.15.0\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=15 -DQT_VERSION_PATCH=0 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qtextstream.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qdatastream.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qxmlstream.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qxmlutils.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qcborstreamwriter.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qcborvalue.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qjsoncbor.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qjsondocument.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qjsonparser.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qjsonarray.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qjsonobject.cpp C:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\src\corelib\serialization\qjsonvalue.cpp qtextstream.cpp qdatastream.cpp qxmlstream.cpp qxmlutils.cpp qcborstreamwriter.cpp qcborvalue.cpp qjsoncbor.cpp qjsondocument.cpp qjsonparser.cpp qjsonarray.cpp qjsonobject.cpp qjsonvalue.cpp link /OUT:..\bin\qmake.exe project.obj main.obj ioutils.obj proitems.obj qmakevfs.obj qmakeglobals.obj qmakeparser.obj qmakeevaluator.obj qmakebuiltins.obj makefile.obj unixmake.obj unixmake2.obj mingw_make.obj option.obj winmakefile.obj projectgenerator.obj property.obj meta.obj makefiledeps.obj metamakefile.obj xmloutput.obj msvc_nmake.obj msvc_vcproj.obj msvc_vcxproj.obj msvc_objectmodel.obj msbuild_objectmodel.obj registry.obj qbitarray.obj qbuffer.obj qcryptographichash.obj qfilesystementry.obj qfilesystemengine.obj qfilesystemengine_win.obj qfilesystemiterator_win.obj qfsfileengine.obj qfsfileengine_iterator.obj qarraydata.obj qbytearray.obj qbytearraylist.obj qvsnprintf.obj qbytearraymatcher.obj qcalendar.obj qdatetime.obj qdir.obj qdiriterator.obj qfiledevice.obj qfile.obj qtemporaryfile.obj qabstractfileengine.obj qfsfileengine_win.obj qsystemlibrary.obj qfileinfo.obj qendian.obj qglobal.obj qgregoriancalendar.obj qhash.obj qiodevice.obj qringbuffer.obj qdebug.obj qlist.obj qlocale.obj qlocale_tools.obj qlocale_win.obj qversionnumber.obj qmalloc.obj qmap.obj qoperatingsystemversion.obj qoperatingsystemversion_win.obj qregexp.obj qromancalendar.obj qutfcodec.obj qstring.obj qstringlist.obj qstringbuilder.obj qsystemerror.obj qtextstream.obj qdatastream.obj quuid.obj qrandom.obj qsettings.obj qvariant.obj qsettings_win.obj qmetatype.obj qxmlstream.obj qxmlutils.obj qnumeric.obj qlogging.obj qcborstreamwriter.obj qcborvalue.obj qjsoncbor.obj qjsondocument.obj qjsonparser.obj qjsonarray.obj qjsonobject.obj qjsonvalue.obj qlibraryinfo.obj qmake_pch.obj ole32.lib advapi32.lib shell32.lib netapi32.lib Microsoft (R) Incremental Linker Version 14.28.29304.1 Copyright (C) Microsoft Corporation. All rights reserved. Info: creating cache file C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\.qmake.cache Info: creating stash file C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\.qmake.stash config-x64-windows-dbg-err.log Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 Copyright (C) Microsoft Corporation. All rights reserved. Command line: -confirm-license -opensource -verbose -system-zlib -system-libjpeg -system-libpng -system-freetype -system-pcre -system-doubleconversion -system-sqlite -system-harfbuzz -icu -no-angle -opengl dynamic -nomake examples -nomake tests "LIBJPEG_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/jpegd.lib" "ZLIB_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib" "LIBPNG_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib" "PCRE2_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/pcre2-16d.lib" "FREETYPE_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/freetyped.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib BROTLI_ENC_DEBUG-NOTFOUND BROTLI_DEC_DEBUG-NOTFOUND BROTLI_COMMON_RELEASE-NOTFOUND" "ICU_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icuind.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icutud.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icuucd.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icuiod.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icudtd.lib Advapi32.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "PSQL_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpq.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libssl.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libcrypto.lib ws2_32.lib secur32.lib advapi32.lib shell32.lib crypt32.lib user32.lib gdi32.lib" "SQLITE_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/sqlite3.lib" "HARFBUZZ_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/harfbuzz.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/freetyped.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib BROTLI_ENC_DEBUG-NOTFOUND BROTLI_DEC_DEBUG-NOTFOUND BROTLI_COMMON_RELEASE-NOTFOUND" "OPENSSL_LIBS=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libssl.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libcrypto.lib ws2_32.lib secur32.lib advapi32.lib shell32.lib crypt32.lib user32.lib gdi32.lib" -debug -prefix C:/Development/Arcane/vcpkg/installed/x64-windows -extprefix C:/Development/Arcane/vcpkg/installed/x64-windows -hostprefix C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug -hostlibdir C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug/lib -hostbindir C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug/bin -archdatadir C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug -datadir C:/Development/Arcane/vcpkg/installed/x64-windows/share/qt5/debug -plugindir C:/Development/Arcane/vcpkg/installed/x64-windows/debug/plugins -qmldir C:/Development/Arcane/vcpkg/installed/x64-windows/debug/qml -headerdir C:/Development/Arcane/vcpkg/installed/x64-windows/include -libexecdir C:/Development/Arcane/vcpkg/installed/x64-windows/tools/qt5/debug -bindir C:/Development/Arcane/vcpkg/installed/x64-windows/debug/bin -libdir C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib -I C:/Development/Arcane/vcpkg/installed/x64-windows/include -L C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib -L C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link -xplatform win32-msvc This is the Qt Open Source Edition. You have already accepted the terms of the Open Source license. Running configuration tests... Checking for valid makespec... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\verifyspec && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/verifyspec > Info: creating stash file C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\.qmake.stash + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\verifyspec && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\verifyspec -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmD7E2.tmp" > verifyspec.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:verifyspec.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmD822.tmp" test config.qtbase.tests.verifyspec succeeded Checking for target architecture... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\arch && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/arch + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\arch && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\arch -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmD90B.tmp" > arch.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:arch.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmD97A.tmp" Detected architecture: x86_64 (sse sse2) test config.qtbase.tests.architecture gave result x86_64 Checking for SSE2 instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=sse2" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_SSE2 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmDA73.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmDAF1.tmp" test config.qtbase.tests.sse2 succeeded Checking for AES new instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=aesni" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AESNI -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmDC28.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmDC87.tmp" test config.qtbase.tests.aesni succeeded Checking for alloca() in alloca.h... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\alloca_h && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/alloca_h + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\alloca_h && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmDD70.tmp" > main.cpp > .\main.cpp(2): fatal error C1083: Cannot open include file: 'alloca.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase.tests.alloca_h FAILED Checking for alloca() in malloc.h... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\alloca_malloc_h && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/alloca_malloc_h + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\alloca_malloc_h && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmDE4B.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:alloca_malloc_h.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmDE9A.tmp" test config.qtbase.tests.alloca_malloc_h succeeded Checking for SSE3 instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=sse3" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_SSE3 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmDF93.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmE001.tmp" test config.qtbase.tests.sse3 succeeded Checking for SSSE3 instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=ssse3" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_SSSE3 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmE129.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmE1A7.tmp" test config.qtbase.tests.ssse3 succeeded Checking for SSE4.1 instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=sse4_1" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_SSE4_1 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmE2A0.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmE31E.tmp" test config.qtbase.tests.sse4_1 succeeded Checking for SSE4.2 instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=sse4_2" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_SSE4_2 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmE417.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmE486.tmp" test config.qtbase.tests.sse4_2 succeeded Checking for AVX instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmE57F.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmE5ED.tmp" test config.qtbase.tests.avx succeeded Checking for AVX2 instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx2" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX2 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX2 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmE6E6.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmE754.tmp" test config.qtbase.tests.avx2 succeeded Checking for AVX512 F instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx512f" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX512 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX512F -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmE84D.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmE8BC.tmp" test config.qtbase.tests.avx512f succeeded Checking for AVX512 BW instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx512bw" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX512 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX512BW -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmE9B5.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmEA23.tmp" test config.qtbase.tests.avx512bw succeeded Checking for AVX512 CD instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx512cd" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX512 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX512CD -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmEB2C.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmEBAA.tmp" test config.qtbase.tests.avx512cd succeeded Checking for AVX512 DQ instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx512dq" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX512 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX512DQ -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmECF1.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmED7F.tmp" test config.qtbase.tests.avx512dq succeeded Checking for AVX512 ER instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx512er" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX512 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX512ER -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmEE68.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmEED6.tmp" test config.qtbase.tests.avx512er succeeded Checking for AVX512 IFMA instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx512ifma" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX512 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX512IFMA -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmEFCF.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmF03E.tmp" test config.qtbase.tests.avx512ifma succeeded Checking for AVX512 PF instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx512pf" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX512 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX512PF -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmF137.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmF1A5.tmp" test config.qtbase.tests.avx512pf succeeded Checking for AVX512 VBMI instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx512vbmi" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX512 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX512VBMI -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmF29E.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmF31C.tmp" test config.qtbase.tests.avx512vbmi succeeded Checking for AVX512 VL instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=avx512vl" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX512 -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_AVX512VL -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmF415.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmF483.tmp" test config.qtbase.tests.avx512vl succeeded Checking for C++14 support... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cxx14 && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/cxx14 + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cxx14 && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -std:c++14 -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmF54E.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:cxx14.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmF58D.tmp" test config.qtbase.tests.cxx14 succeeded Checking for C++17 support... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cxx17 && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/cxx17 + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cxx17 && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -std:c++17 -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmF667.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:cxx17.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmF762.tmp" test config.qtbase.tests.cxx17 succeeded Checking for C99 support... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\c99 && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/c99 + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\c99 && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:strictStrings -O2 -MD -W0 -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmF83C.tmp" > main.c > .\main.c(5): fatal error C1189: #error: __STDC_VERSION__ must be >= 199901L > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase.tests.c99 FAILED Global lib dirs: [C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link] ["C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Preview\\VC\\Tools\\MSVC\\14.28.29304\\lib\\x64" "C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.19041.0\\ucrt\\x64" "C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.19041.0\\um\\x64"] Global inc dirs: [C:/Development/Arcane/vcpkg/installed/x64-windows/include] ["C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Preview\\VC\\Tools\\MSVC\\14.28.29304\\include" "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\ucrt" "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\shared" "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\um" "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\winrt" "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\cppwinrt"] Checking for D-Bus >= 1.2... Trying source 0 (type pkgConfig) of library dbus ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library dbus ... dbus/dbus.h not found in [] and global paths. => source produced no result. Trying source 2 (type inline) of library dbus ... => source failed condition '!config.win32'. test config.qtbase.libraries.dbus FAILED Checking for F16C instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=f16c" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -arch:AVX -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_F16C -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmF916.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmF985.tmp" test config.qtbase.tests.f16c succeeded Checking for D-Bus >= 1.2 (host)... Trying source 0 (type pkgConfig) of library host_dbus ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library host_dbus ... => source accepted. test config.qtbase.libraries.host_dbus succeeded Checking for IncrediBuild... Searching for file BuildConsole.exe. Not found. test config.qtbase.tests.incredibuild_xge FAILED Checking for udev... Trying source 0 (type pkgConfig) of library libudev ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library libudev ... libudev.h not found in [] and global paths. => source produced no result. test config.qtbase.libraries.libudev FAILED Checking for POSIX fallocate()... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\posix_fallocate && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/posix_fallocate + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\posix_fallocate && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmFA8D.tmp" > main.cpp > .\main.cpp(3): fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase.tests.posix_fallocate FAILED Checking for precompiled header support... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\precompile_header && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/precompile_header + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\precompile_header && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -Yc -Fp.pch\precompile_header_pch.pch -Fo.pch\precompile_header_pch.obj -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -TP header.h > header.h > cl -c -FIheader.h -Yuheader.h -Fp.pch\precompile_header_pch.pch -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmFB97.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:precompile_header.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmFBC7.tmp" test config.qtbase.tests.precompile_header succeeded Checking for RDRAND instruction... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=rdrnd" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_RDRND -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmFCC0.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmFD2E.tmp" test config.qtbase.tests.rdrnd succeeded Checking for RDSEED instruction... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=rdseed" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_RDSEED -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmFE56.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmFEC4.tmp" test config.qtbase.tests.rdseed succeeded Checking for SHA new instructions... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "CONFIG+=add_cflags" "DEFINES+=NO_ATTRIBUTE" "SIMD=shani" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNO_ATTRIBUTE -DQT_COMPILER_SUPPORTS_SHANI -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmFFCD.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm3B.tmp" test config.qtbase.tests.shani succeeded Checking for Signaling NaN for doubles... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\signaling_nan && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/signaling_nan + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\signaling_nan && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm125.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:signaling_nan.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm1C2.tmp" test config.qtbase.tests.signaling_nan succeeded Checking for STL compatibility... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\stl && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/stl + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\stl && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\stl -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm28C.tmp" > stltest.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:stl.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm58B.tmp" test config.qtbase.tests.stl succeeded Checking for zlib... Trying source 0 (type inline) of library zlib ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\zlib && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += zlib" "QMAKE_LIBS_ZLIB = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/zlib + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\zlib && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm693.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:zlib.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm6F2.tmp" => source accepted. test config.qtbase.libraries.zlib succeeded Checking for Intrinsics without -mXXX argument... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "SIMD=aesni avx avx2 avx512bw avx512cd avx512dq avx512er avx512f avx512ifma avx512pf avx512vbmi avx512vl f16c rdrnd rdseed shani sse2 sse3 sse4_1 sse4_2 ssse3" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/src/5.15.0-f256990b37.clean/config.tests/x86_simd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\x86_simd && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DQT_COMPILER_SUPPORTS_AESNI -DQT_COMPILER_SUPPORTS_AVX -DQT_COMPILER_SUPPORTS_AVX2 -DQT_COMPILER_SUPPORTS_AVX512BW -DQT_COMPILER_SUPPORTS_AVX512CD -DQT_COMPILER_SUPPORTS_AVX512DQ -DQT_COMPILER_SUPPORTS_AVX512ER -DQT_COMPILER_SUPPORTS_AVX512F -DQT_COMPILER_SUPPORTS_AVX512IFMA -DQT_COMPILER_SUPPORTS_AVX512PF -DQT_COMPILER_SUPPORTS_AVX512VBMI -DQT_COMPILER_SUPPORTS_AVX512VL -DQT_COMPILER_SUPPORTS_F16C -DQT_COMPILER_SUPPORTS_RDRND -DQT_COMPILER_SUPPORTS_RDSEED -DQT_COMPILER_SUPPORTS_SHANI -DQT_COMPILER_SUPPORTS_SSE2 -DQT_COMPILER_SUPPORTS_SSE3 -DQT_COMPILER_SUPPORTS_SSE4_1 -DQT_COMPILER_SUPPORTS_SSE4_2 -DQT_COMPILER_SUPPORTS_SSSE3 -DNDEBUG -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\config.tests\x86_simd -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm7FB.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:x86_simd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm869.tmp" test config.qtbase.tests.x86SimdAlways succeeded Checking for Zstandard... Trying source 0 (type pkgConfig) of library zstd ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library zstd ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\zstd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += zstd" "QMAKE_LIBS_ZSTD = -lzstd" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/zstd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\zstd && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W0 -EHsc -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -DNDEBUG -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm943.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:zstd.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm982.tmp" > LINK : fatal error LNK1181: cannot open input file 'zstd.lib' > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\link.EXE"' : return code '0x49d' > Stop. => source failed verification. test config.qtbase.libraries.zstd FAILED Checking for C++11 <future>... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cxx11_future && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/cxx11_future + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cxx11_future && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdcxx11_future.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmA3D.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:cxx11_future.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmCBF.tmp" test config.qtbase_corelib.tests.cxx11_future succeeded Checking for eventfd... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\eventfd && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/eventfd + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\eventfd && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdeventfd.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmDC7.tmp" > main.cpp > .\main.cpp(2): fatal error C1083: Cannot open include file: 'sys/eventfd.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase_corelib.tests.eventfd FAILED Checking for ICU... Trying source 0 (type inline) of library icu ... => source failed condition 'config.win32 && !features.shared'. Trying source 1 (type inline) of library icu ... => source failed condition 'config.win32 && !features.shared'. Trying source 2 (type inline) of library icu ... => source failed condition 'config.win32 && !features.shared'. Trying source 3 (type inline) of library icu ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\icu && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += icu" "QMAKE_LIBS_ICU = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icuind.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icutud.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icuucd.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icuiod.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/icudtd.lib Advapi32.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/icu + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\icu && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdicu.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nmEC1.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:icu.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nmFAD.tmp" => source accepted. test config.qtbase_corelib.libraries.icu succeeded Checking for inotify... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\inotify && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/inotify + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\inotify && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdinotify.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm10A6.tmp" > main.cpp > .\main.cpp(2): fatal error C1083: Cannot open include file: 'sys/inotify.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase_corelib.tests.inotify FAILED Checking for PCRE2... Trying source 0 (type pkgConfig) of library pcre2 ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library pcre2 ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\pcre2 && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += pcre2" "QMAKE_LIBS_PCRE2 = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/pcre2-16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/pcre2 + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\pcre2 && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdpcre2.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1171.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:pcre2.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm11CF.tmp" => source accepted. test config.qtbase_corelib.libraries.pcre2 succeeded Checking for slog2... Trying source 0 (type inline) of library slog2 ... sys/slog2.h not found in [] and global paths. => source produced no result. test config.qtbase_corelib.libraries.slog2 FAILED Checking for 64 bit atomics... Trying source 0 (type inline) of library libatomic ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\libatomic && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += libatomic" "QMAKE_LIBS_LIBATOMIC = " C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/libatomic + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\libatomic && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdlibatomic.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm12B9.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:libatomic.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm1346.tmp" => source accepted. test config.qtbase_corelib.libraries.libatomic succeeded Checking for DoubleConversion... Trying source 0 (type inline) of library doubleconversion ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\doubleconversion && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += doubleconversion" "QMAKE_LIBS_DOUBLECONVERSION = -ldouble-conversion" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/doubleconversion + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\doubleconversion && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fddoubleconversion.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1430.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:doubleconversion.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm149E.tmp" => source accepted. test config.qtbase_corelib.libraries.doubleconversion succeeded Checking for O_CLOEXEC... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cloexec && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/cloexec + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cloexec && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdcloexec.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1578.tmp" > main.cpp > .\main.cpp(4): fatal error C1083: Cannot open include file: 'sys/socket.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase_corelib.tests.cloexec FAILED Checking for advapi32... Trying source 0 (type inline) of library advapi32 ... => source accepted. test config.qtbase_corelib.libraries.advapi32 succeeded Checking for gdi32... Trying source 0 (type inline) of library gdi32 ... => source accepted. test config.qtbase_corelib.libraries.gdi32 succeeded Checking for kernel32... Trying source 0 (type inline) of library kernel32 ... => source accepted. test config.qtbase_corelib.libraries.kernel32 succeeded Checking for netapi32... Trying source 0 (type inline) of library netapi32 ... => source accepted. test config.qtbase_corelib.libraries.netapi32 succeeded Checking for ole32... Trying source 0 (type inline) of library ole32 ... => source accepted. test config.qtbase_corelib.libraries.ole32 succeeded Checking for shell32... Trying source 0 (type inline) of library shell32 ... => source accepted. test config.qtbase_corelib.libraries.shell32 succeeded Checking for uuid... Trying source 0 (type inline) of library uuid ... => source accepted. test config.qtbase_corelib.libraries.uuid succeeded Checking for user32... Trying source 0 (type inline) of library user32 ... => source accepted. test config.qtbase_corelib.libraries.user32 succeeded Checking for winmm... Trying source 0 (type inline) of library winmm ... => source accepted. test config.qtbase_corelib.libraries.winmm succeeded Checking for ws2_32... Trying source 0 (type inline) of library ws2_32 ... => source accepted. test config.qtbase_corelib.libraries.ws2_32 succeeded Checking for C++11 <random>... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cxx11_random && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/cxx11_random + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\cxx11_random && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdcxx11_random.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1662.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:cxx11_random.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm177D.tmp" test config.qtbase_corelib.tests.cxx11_random succeeded Checking for working std::atomic for function pointers... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\atomicfptr && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/atomicfptr + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\atomicfptr && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdatomicfptr.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1856.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:atomicfptr.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm18E4.tmp" test config.qtbase_corelib.tests.atomicfptr succeeded Checking for OpenSSL Headers... Trying source 0 (type inline) of library openssl_headers ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\openssl_headers && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += openssl_headers" "QMAKE_LIBS_OPENSSL_HEADERS = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libssl.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libcrypto.lib ws2_32.lib secur32.lib advapi32.lib shell32.lib crypt32.lib user32.lib gdi32.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/openssl_headers + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\openssl_headers && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdopenssl_headers.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1A1B.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:openssl_headers.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm1AC8.tmp" => source accepted. test config.qtbase_network.libraries.openssl_headers succeeded Checking for DTLS support in OpenSSL... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\dtls && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += openssl_headers" "QMAKE_LIBS_OPENSSL_HEADERS = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libssl.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libcrypto.lib ws2_32.lib secur32.lib advapi32.lib shell32.lib crypt32.lib user32.lib gdi32.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/dtls + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\dtls && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fddtls.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1BF0.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:dtls.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm1C9D.tmp" test config.qtbase_network.tests.dtls succeeded Trying source 0 (type makeSpec) of library network ... => source accepted. Checking for getifaddrs()... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\getifaddrs && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += network" "QMAKE_LIBS_NETWORK = ws2_32.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/getifaddrs + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\getifaddrs && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdgetifaddrs.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1D86.tmp" > main.cpp > .\main.cpp(3): fatal error C1083: Cannot open include file: 'sys/socket.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase_network.tests.getifaddrs FAILED Checking for IPv6 ifname... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\ipv6ifname && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += network" "QMAKE_LIBS_NETWORK = ws2_32.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/ipv6ifname + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\ipv6ifname && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdipv6ifname.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1E52.tmp" > main.cpp > .\main.cpp(3): fatal error C1083: Cannot open include file: 'sys/socket.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase_network.tests.ipv6ifname FAILED Checking for Network List Manager... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\netlistmgr && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/netlistmgr + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\netlistmgr && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdnetlistmgr.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm1F1D.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:netlistmgr.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm2121.tmp" test config.qtbase_network.tests.netlistmgr succeeded Checking for OCSP stapling support in OpenSSL... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\ocsp && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += openssl_headers" "QMAKE_LIBS_OPENSSL_HEADERS = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libssl.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libcrypto.lib ws2_32.lib secur32.lib advapi32.lib shell32.lib crypt32.lib user32.lib gdi32.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/ocsp + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\ocsp && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdocsp.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm223A.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:ocsp.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm2306.tmp" test config.qtbase_network.tests.ocsp succeeded Checking for XCB >= 1.11... Trying source 0 (type pkgConfig) of library xcb ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type pkgConfig) of library xcb ... pkg-config use disabled globally. => source produced no result. Trying source 2 (type inline) of library xcb ... xcb/xcb.h not found in [] and global paths. => source produced no result. test config.qtbase_gui.libraries.xcb FAILED Checking for DirectX GI... Trying source 0 (type inline) of library dxgi ... => source accepted. test config.qtbase_gui.libraries.dxgi succeeded Checking for Direct3D 11... Trying source 0 (type inline) of library d3d11 ... => source accepted. test config.qtbase_gui.libraries.d3d11 succeeded Checking for Direct2D 1... Trying source 0 (type inline) of library d2d1 ... => source accepted. test config.qtbase_gui.libraries.d2d1 succeeded Checking for Direct2D 1.1... Trying source 0 (type inline) of library d2d1_1 ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\d2d1_1 && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += d2d1_1" "QMAKE_LIBS_D2D1_1 = -ld2d1" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/d2d1_1 + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\d2d1_1 && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdd2d1_1.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm241E.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:d2d1_1.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm2680.tmp" => source accepted. test config.qtbase_gui.libraries.d2d1_1 succeeded Checking for DirectX GI 1.2... Trying source 0 (type inline) of library dxgi1_2 ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\dxgi1_2 && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += dxgi1_2" "QMAKE_LIBS_DXGI1_2 = -ldxgi" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/dxgi1_2 + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\dxgi1_2 && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fddxgi1_2.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm276A.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:dxgi1_2.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm294F.tmp" => source accepted. test config.qtbase_gui.libraries.dxgi1_2 succeeded Checking for Direct3D 11.1... Trying source 0 (type inline) of library d3d11_1 ... => source accepted. test config.qtbase_gui.libraries.d3d11_1 succeeded Checking for Direct3D 9... Trying source 0 (type inline) of library d3d9 ... => source accepted. test config.qtbase_gui.libraries.d3d9 succeeded Checking for DirectWrite... Trying source 0 (type inline) of library dwrite ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\dwrite && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += dwrite" "QMAKE_LIBS_DWRITE = -ldwrite" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/dwrite + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\dwrite && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fddwrite.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm2A38.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:dwrite.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm2C1E.tmp" => source accepted. test config.qtbase_gui.libraries.dwrite succeeded Checking for DirectWrite 1... Trying source 0 (type inline) of library dwrite_1 ... => source accepted. test config.qtbase_gui.libraries.dwrite_1 succeeded Checking for DirectWrite 2... Trying source 0 (type inline) of library dwrite_2 ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\dwrite_2 && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += dwrite_2" "QMAKE_LIBS_DWRITE_2 = -ldwrite" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/dwrite_2 + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\dwrite_2 && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fddwrite_2.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm2D17.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:dwrite_2.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm2EED.tmp" => source accepted. test config.qtbase_gui.libraries.dwrite_2 succeeded Checking for KMS... Trying source 0 (type pkgConfig) of library drm ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library drm ... xf86drmMode.h not found in [] and global paths. xf86drm.h not found in [] and global paths. => source produced no result. Trying source 2 (type inline) of library drm ... => source failed condition 'config.integrity'. test config.qtbase_gui.libraries.drm FAILED Checking for DirectX GUID... Trying source 0 (type inline) of library dxguid ... => source accepted. test config.qtbase_gui.libraries.dxguid succeeded Checking for EGL... Trying source 0 (type pkgConfig) of library egl ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type makeSpec) of library egl ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\egl && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += egl" "QMAKE_LIBS_EGL = " C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/egl + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\egl && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdegl.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm2FE6.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:egl.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm30F0.tmp" > main.obj : error LNK2019: unresolved external symbol __imp_eglDestroyContext referenced in function main > egl.exe : fatal error LNK1120: 1 unresolved externals > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\link.EXE"' : return code '0x460' > Stop. => source failed verification. Trying source 2 (type inline) of library egl ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\egl && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += egl" "QMAKE_LIBS_EGL = -lEGL -lGLESv2 -lGL -lANGLE -lGL -lX11 -ldl -lm -lpthread" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/egl + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\egl && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > del egl.vc.pdb egl.ilk egl.idb > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdegl.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm3218.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:egl.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm3323.tmp" > LINK : fatal error LNK1104: cannot open file 'EGL.lib' > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\link.EXE"' : return code '0x450' > Stop. => source failed verification. Trying source 3 (type inline) of library egl ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\egl && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += egl" "QMAKE_LIBS_EGL = -DGL_GLES_PROTOTYPES=1 -DGL_GLEXT_PROTOTYPES -DEGL_EGL_PROTOTYPES=1 -DEGL_EGLEXT_PROTOTYPES -lEGL -lGLESv2 -lGL -lANGLE -lGL -lX11 -ldl -lm -lpthread" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/egl + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\egl && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > del egl.vc.pdb egl.ilk egl.idb > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdegl.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm33FC.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:egl.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm3546.tmp" > LINK : warning LNK4044: unrecognized option '/DGL_GLES_PROTOTYPES=1'; ignored > LINK : warning LNK4044: unrecognized option '/DGL_GLEXT_PROTOTYPES'; ignored > LINK : warning LNK4044: unrecognized option '/DEGL_EGL_PROTOTYPES=1'; ignored > LINK : warning LNK4044: unrecognized option '/DEGL_EGLEXT_PROTOTYPES'; ignored > LINK : fatal error LNK1104: cannot open file 'EGL.lib' > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\link.EXE"' : return code '0x450' > Stop. => source failed verification. Trying source 4 (type inline) of library egl ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\egl && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += egl" "QMAKE_LIBS_EGL = -DANGLE_EXPORT -DANGLE_UTIL_EXPORT -DGL_API -DGL_APICALL -DEGLAPI -DGL_GLES_PROTOTYPES=1 -DGL_GLEXT_PROTOTYPES -DEGL_EGL_PROTOTYPES=1 -DEGL_EGLEXT_PROTOTYPES -lEGL -lGLESv2 -lGL -lANGLE -lGL -lX11 -ldl -lm -lpthread" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/egl + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\egl && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > del egl.vc.pdb egl.ilk egl.idb > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdegl.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm361F.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:egl.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm372A.tmp" > LINK : warning LNK4044: unrecognized option '/DANGLE_EXPORT'; ignored > LINK : warning LNK4044: unrecognized option '/DANGLE_UTIL_EXPORT'; ignored > LINK : warning LNK4044: unrecognized option '/DGL_API'; ignored > LINK : warning LNK4044: unrecognized option '/DGL_APICALL'; ignored > LINK : warning LNK4044: unrecognized option '/DEGLAPI'; ignored > LINK : warning LNK4044: unrecognized option '/DGL_GLES_PROTOTYPES=1'; ignored > LINK : warning LNK4044: unrecognized option '/DGL_GLEXT_PROTOTYPES'; ignored > LINK : warning LNK4044: unrecognized option '/DEGL_EGL_PROTOTYPES=1'; ignored > LINK : warning LNK4044: unrecognized option '/DEGL_EGLEXT_PROTOTYPES'; ignored > LINK : fatal error LNK1104: cannot open file 'EGL.lib' > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\link.EXE"' : return code '0x450' > Stop. => source failed verification. test config.qtbase_gui.libraries.egl FAILED Checking for evdev... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\evdev && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/evdev + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\evdev && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdevdev.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm37C5.tmp" > main.cpp > .\main.cpp(5): fatal error C1083: Cannot open include file: 'linux/input.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase_gui.tests.evdev FAILED Checking for GBM... Trying source 0 (type pkgConfig) of library gbm ... pkg-config use disabled globally. => source produced no result. test config.qtbase_gui.libraries.gbm FAILED Checking for LinuxFB... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\linuxfb && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/linuxfb + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\linuxfb && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdlinuxfb.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm38DE.tmp" > main.cpp > .\main.cpp(2): fatal error C1083: Cannot open include file: 'linux/fb.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. test config.qtbase_gui.tests.linuxfb FAILED Checking for mtdev... Trying source 0 (type pkgConfig) of library mtdev ... pkg-config use disabled globally. => source produced no result. test config.qtbase_gui.libraries.mtdev FAILED Checking for OpenVG... Trying source 0 (type pkgConfig) of library openvg ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type makeSpec) of library openvg ... VG/openvg.h not found in [] and global paths. => source produced no result. test config.qtbase_gui.libraries.openvg FAILED Checking for default QPA platform... test config.qtbase_gui.tests.qpa_default_platform gave result windows Checking for FreeType... Trying source 0 (type pkgConfig) of library freetype ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type freetype) of library freetype ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\freetype && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += freetype" "QMAKE_LIBS_FREETYPE = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/freetyped.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib BROTLI_ENC_DEBUG-NOTFOUND BROTLI_DEC_DEBUG-NOTFOUND BROTLI_COMMON_RELEASE-NOTFOUND" "QMAKE_DEPENDS_FREETYPE_CC = ZLIB" "QMAKE_DEPENDS_FREETYPE_LD = ZLIB" "QMAKE_LIBS_ZLIB = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/freetype + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\freetype && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdfreetype.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm39F8.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:freetype.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm3A76.tmp" > LINK : fatal error LNK1104: cannot open file 'BROTLI_ENC_DEBUG-NOTFOUND.obj' > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\link.EXE"' : return code '0x450' > Stop. => source failed verification. Trying source 2 (type inline) of library freetype ... => source failed condition 'config.wasm'. Trying source 3 (type inline) of library freetype ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\freetype && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += freetype" "QMAKE_LIBS_FREETYPE = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/freetyped.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib BROTLI_ENC_DEBUG-NOTFOUND BROTLI_DEC_DEBUG-NOTFOUND BROTLI_COMMON_RELEASE-NOTFOUND" "QMAKE_DEPENDS_FREETYPE_CC = ZLIB" "QMAKE_DEPENDS_FREETYPE_LD = ZLIB" "QMAKE_LIBS_ZLIB = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/freetype + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\freetype && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > del main.obj > del freetype.vc.pdb freetype.ilk freetype.idb > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdfreetype.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm3B5F.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:freetype.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm3BDD.tmp" > LINK : fatal error LNK1104: cannot open file 'BROTLI_ENC_DEBUG-NOTFOUND.obj' > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\link.EXE"' : return code '0x450' > Stop. => source failed verification. test config.qtbase_gui.libraries.freetype FAILED Checking for HarfBuzz... Trying source 0 (type inline) of library harfbuzz ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\harfbuzz && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += harfbuzz" "QMAKE_LIBS_HARFBUZZ = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/harfbuzz.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/freetyped.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib BROTLI_ENC_DEBUG-NOTFOUND BROTLI_DEC_DEBUG-NOTFOUND BROTLI_COMMON_RELEASE-NOTFOUND" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/harfbuzz + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\harfbuzz && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdharfbuzz.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm3C88.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:harfbuzz.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm3CE7.tmp" > LINK : fatal error LNK1104: cannot open file 'BROTLI_ENC_DEBUG-NOTFOUND.obj' > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\link.EXE"' : return code '0x450' > Stop. => source failed verification. test config.qtbase_gui.libraries.harfbuzz FAILED Checking for libjpeg... Trying source 0 (type pkgConfig) of library libjpeg ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library libjpeg ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\libjpeg && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += libjpeg" "QMAKE_LIBS_LIBJPEG = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/jpegd.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/libjpeg + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\libjpeg && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdlibjpeg.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm3DFF.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:libjpeg.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm3E6D.tmp" => source accepted. test config.qtbase_gui.libraries.libjpeg succeeded Checking for libpng... Trying source 0 (type pkgConfig) of library libpng ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library libpng ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\libpng && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += libpng" "QMAKE_LIBS_LIBPNG = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib" "QMAKE_DEPENDS_LIBPNG_CC = ZLIB" "QMAKE_DEPENDS_LIBPNG_LD = ZLIB" "QMAKE_LIBS_ZLIB = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/zlibd.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/libpng + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\libpng && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdlibpng.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm3F66.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:libpng.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm3FD5.tmp" => source accepted. test config.qtbase_gui.libraries.libpng succeeded Checking for libmd4c... Trying source 0 (type pkgConfig) of library libmd4c ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library libmd4c ... md4c.h not found in [] and global paths. => source produced no result. test config.qtbase_gui.libraries.libmd4c FAILED Checking for tslib... Trying source 0 (type inline) of library tslib ... tslib.h not found in [] and global paths. => source produced no result. test config.qtbase_gui.libraries.tslib FAILED Checking for Vulkan... Trying source 0 (type pkgConfig) of library vulkan ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type makeSpec) of library vulkan ... Include path /include is invalid. vulkan/vulkan.h not found in [/include] and global paths. => source produced no result. test config.qtbase_gui.libraries.vulkan FAILED Checking for XLib... Trying source 0 (type makeSpec) of library xlib ... X11/Xlib.h not found in [] and global paths. => source produced no result. Trying source 1 (type pkgConfig) of library xlib ... pkg-config use disabled globally. => source produced no result. Trying source 2 (type pkgConfig) of library xlib ... pkg-config use disabled globally. => source produced no result. test config.qtbase_gui.libraries.xlib FAILED Checking for xkbcommon >= 0.5.0... Trying source 0 (type pkgConfig) of library xkbcommon ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library xkbcommon ... xkbcommon/xkbcommon.h not found in [] and global paths. => source produced no result. test config.qtbase_gui.libraries.xkbcommon FAILED Checking for uxtheme.h... Searching for file uxtheme.h. Found at C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um/uxtheme.h. test config.qtbase_widgets.tests.uxtheme succeeded Checking for CUPS... Trying source 0 (type inline) of library cups ... cups/cups.h not found in [] and global paths. => source produced no result. test config.qtbase_printsupport.libraries.cups FAILED Checking for DB2 (IBM)... Trying source 0 (type inline) of library db2 ... sqlcli.h not found in [] and global paths. sqlcli1.h not found in [] and global paths. => source produced no result. Trying source 1 (type inline) of library db2 ... => source failed condition '!config.win32'. test config.qtbase_sqldrivers.libraries.db2 FAILED Checking for InterBase... Trying source 0 (type inline) of library ibase ... ibase.h not found in [] and global paths. => source produced no result. Trying source 1 (type inline) of library ibase ... => source failed condition '!config.win32'. test config.qtbase_sqldrivers.libraries.ibase FAILED Checking for MySQL... Trying source 0 (type mysqlConfig) of library mysql ... mysql_config not found. => source produced no result. Trying source 1 (type mysqlConfig) of library mysql ... mysql_config not found. => source produced no result. Trying source 2 (type mysqlConfig) of library mysql ... mysql_config not found. => source produced no result. Trying source 3 (type mysqlConfig) of library mysql ... mysql_config not found. => source produced no result. Trying source 4 (type inline) of library mysql ... => source failed condition '!config.win32'. Trying source 5 (type inline) of library mysql ... mysql.h not found in [] and global paths. => source produced no result. Trying source 6 (type inline) of library mysql ... mysql.h not found in [] and global paths. => source produced no result. Trying source 7 (type inline) of library mysql ... => source failed condition '!config.win32'. Trying source 8 (type inline) of library mysql ... => source failed condition '!config.win32'. test config.qtbase_sqldrivers.libraries.mysql FAILED Checking for OCI (Oracle)... Trying source 0 (type inline) of library oci ... oci.h not found in [] and global paths. => source produced no result. Trying source 1 (type inline) of library oci ... => source failed condition '!config.win32'. test config.qtbase_sqldrivers.libraries.oci FAILED Checking for ODBC... Trying source 0 (type inline) of library odbc ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\odbc && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += odbc" "QMAKE_LIBS_ODBC = -lodbc32" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/odbc + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\odbc && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdodbc.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm4189.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:odbc.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm438E.tmp" => source accepted. test config.qtbase_sqldrivers.libraries.odbc succeeded Checking for PostgreSQL... Trying source 0 (type pkgConfig) of library psql ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type psqlConfig) of library psql ... pg_config not found. => source produced no result. Trying source 2 (type psqlEnv) of library psql ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\psql && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += psql" "QMAKE_LIBS_PSQL = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpq.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libssl.lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libcrypto.lib ws2_32.lib secur32.lib advapi32.lib shell32.lib crypt32.lib user32.lib gdi32.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/psql + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\psql && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdpsql.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm4487.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:psql.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm44F5.tmp" => source accepted. test config.qtbase_sqldrivers.libraries.psql succeeded Checking for SQLite (version 2)... Trying source 0 (type inline) of library sqlite2 ... sqlite.h not found in [] and global paths. => source produced no result. test config.qtbase_sqldrivers.libraries.sqlite2 FAILED Checking for TDS (Sybase)... Trying source 0 (type sybaseEnv) of library tds ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\tds && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += tds" "QMAKE_LIBS_TDS = -lNTWDBLIB" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/tds + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\tds && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdtds.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm45FE.tmp" > main.cpp > .\main.cpp(2): fatal error C1083: Cannot open include file: 'sybfront.h': No such file or directory > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29304\bin\HostX64\x64\cl.EXE"' : return code '0x2' > Stop. => source failed verification. Trying source 1 (type sybaseEnv) of library tds ... => source failed condition '!config.win32'. test config.qtbase_sqldrivers.libraries.tds FAILED Checking for SQLite (version 3)... Trying source 0 (type pkgConfig) of library sqlite3 ... pkg-config use disabled globally. => source produced no result. Trying source 1 (type inline) of library sqlite3 ... + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\sqlite3 && C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" "QMAKE_LIBDIR += C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/manual-link" "INCLUDEPATH += C:/Development/Arcane/vcpkg/installed/x64-windows/include" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/bz2d.lib" "QMAKE_LIBS_PRIVATE+=C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/libpng16d.lib" "QMAKE_USE += sqlite3" "QMAKE_LIBS_SQLITE3 = C:/Development/Arcane/vcpkg/installed/x64-windows/debug/lib/sqlite3.lib" C:/Development/Arcane/vcpkg/buildtrees/qt5-base/x64-windows-dbg/config.tests/sqlite3 + cd /d C:\Development\Arcane\vcpkg\buildtrees\qt5-base\x64-windows-dbg\config.tests\sqlite3 && set MAKEFLAGS=& nmake > Microsoft (R) Program Maintenance Utility Version 14.28.29304.1 > Copyright (C) Microsoft Corporation. All rights reserved. > cl -c -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -EHsc /Fdsqlite3.vc.pdb -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DWIN64 -I. -IC:\Development\Arcane\vcpkg\installed\x64-windows\include -IC:\Development\Arcane\vcpkg\buildtrees\qt5-base\src\5.15.0-f256990b37.clean\mkspecs\win32-msvc -Fo @"C:\Users\Sam Huang\AppData\Local\Temp\nm4727.tmp" > main.cpp > link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:sqlite3.exe @"C:\Users\Sam Huang\AppData\Local\Temp\nm4795.tmp" => source accepted. test config.qtbase_sqldrivers.libraries.sqlite3 succeeded Done running configuration tests. Configure summary: Build type: win32-msvc (x86_64, CPU features: sse sse2) Compiler: msvc 192829304 Configuration: sse2 aesni sse3 ssse3 sse4_1 sse4_2 avx avx2 avx512f avx512bw avx512cd avx512dq avx512er avx512ifma avx512pf avx512vbmi avx512vl compile_examples f16c largefile precompile_header rdrnd rdseed shani x86SimdAlways shared shared debug c++11 c++14 c++17 c++1z concurrent dbus no-pkg-config release_tools stl Build options: Mode ................................... debug; optimized tools Building shared libraries .............. yes Using C standard ....................... C89 Using C++ standard ..................... C++17 Relocatable ............................ yes Using precompiled headers .............. yes Using LTCG ............................. no Target compiler supports: SSE .................................. SSE2 SSE3 SSSE3 SSE4.1 SSE4.2 AVX .................................. AVX AVX2 AVX512 ............................... F ER CD PF DQ BW VL IFMA VBMI Other x86 ............................ AES F16C RDRAND SHA Build parts ............................ libs tools App store compliance ................... no Qt modules and options: Qt Concurrent .......................... yes Qt D-Bus ............................... yes Qt D-Bus directly linked to libdbus .... no Qt Gui ................................. yes Qt Network ............................. yes Qt Sql ................................. yes Qt Testlib ............................. yes Qt Widgets ............................. yes Qt Xml ................................. yes Support enabled for: Using pkg-config ....................... no udev ................................... no Using system zlib ...................... yes Zstandard support ...................... no Qt Core: DoubleConversion ....................... yes Using system DoubleConversion ........ yes GLib ................................... no iconv .................................. no ICU .................................... yes Built-in copy of the MIME database ..... yes Tracing backend ........................ <none> Logging backends: journald ............................. no syslog ............................... no slog2 ................................ no PCRE2 .................................. no Using system PCRE2 ................... yes Qt Network: getifaddrs() ........................... no IPv6 ifname ............................ no libproxy ............................... no Schannel ............................... no OpenSSL ................................ yes Qt directly linked to OpenSSL ........ no OpenSSL 1.1 ............................ yes DTLS ................................... yes OCSP-stapling .......................... yes SCTP ................................... no Use system proxies ..................... yes GSSAPI ................................. no Qt Gui: Accessibility .......................... yes FreeType ............................... yes Using system FreeType ................ no HarfBuzz ............................... yes Using system HarfBuzz ................ no Fontconfig ............................. no Image formats: GIF .................................. yes ICO .................................. yes JPEG ................................. yes Using system libjpeg ............... yes PNG .................................. yes Using system libpng ................ yes Text formats: HtmlParser ........................... yes CssParser ............................ yes OdfWriter ............................ yes MarkdownReader ....................... yes Using system libmd4c ............... no MarkdownWriter ....................... yes EGL .................................... no OpenVG ................................. no OpenGL: ANGLE ................................ no Desktop OpenGL ....................... no Dynamic OpenGL ....................... yes OpenGL ES 2.0 ........................ no OpenGL ES 3.0 ........................ no OpenGL ES 3.1 ........................ no OpenGL ES 3.2 ........................ no Vulkan ................................. no Session Management ..................... yes Features used by QPA backends: evdev .................................. no libinput ............................... no INTEGRITY HID .......................... no mtdev .................................. no tslib .................................. no xkbcommon .............................. no X11 specific: XLib ................................. no XCB Xlib ............................. no EGL on X11 ........................... no xkbcommon-x11 ........................ no QPA backends: DirectFB ............................... no EGLFS .................................. no LinuxFB ................................ no VNC .................................... no Windows: Direct 2D ............................ yes DirectWrite .......................... yes DirectWrite 2 ........................ yes Qt Sql: SQL item models ........................ yes Qt Widgets: GTK+ ................................... no Styles ................................. Fusion Windows WindowsVista Qt PrintSupport: CUPS ................................... no Qt Sql Drivers: DB2 (IBM) .............................. no InterBase .............................. no MySql .................................. no OCI (Oracle) ........................... no ODBC ................................... yes PostgreSQL ............................. yes SQLite2 ................................ no SQLite ................................. yes Using system provided SQLite ......... yes TDS (Sybase) ........................... no Qt Testlib: Tester for item models ................. yes WARNING: Using OpenGL ES 2.0 on Windows without ANGLE. The build will most likely fail. Specify -opengl desktop to use regular OpenGL. ERROR: Feature 'system-freetype' was enabled, but the pre-condition 'features.freetype && libs.freetype' failed. ERROR: Feature 'system-harfbuzz' was enabled, but the pre-condition 'features.harfbuzz && libs.harfbuzz' failed. Oh shoot I realized I forgot to run bootstrap-vcpkg after I pulled the pull request... I'll try again later today after running that command. Same issue after running bootstrap-vcpkg... Okay, I'm going to close this, because I found out my Antivirus is being a jerk despite it being turned off.
gharchive/issue
2020-09-09T19:13:30
2025-04-01T06:39:35.857117
{ "authors": [ "JackBoosY", "Neumann-A", "sam20908", "wrobelda" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/issues/13438", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1939994960
[ICU] build failure Operating system Windows Compiler MSVC Steps to reproduce the behavior vcpkg install icu Failure logs C:\vcpkg>vcpkg install icu warning: The vcpkg C:\vcpkg\vcpkg.exe is using detected vcpkg root C:\vcpkg and ignoring mismatched VCPKG_ROOT environment value C:\software\tools\vcpkg. To suppress this message, unset the environment variable or use the --vcpkg-root command line switch. warning: In the September 2023 release, the default triplet for vcpkg libraries changed from x86-windows to the detected host triplet (x64-windows). For the old behavior, add --triplet x86-windows . To suppress this message, add --triplet x64-windows . Computing installation plan... The following packages will be built and installed: icu[core,tools]:x64-windows -> 73.1 Detecting compiler hash for triplet x64-windows... Restored 0 package(s) from C:\Users\heimann\AppData\Local\vcpkg\archives in 287 us. Use --debug to see more details. Installing 1/1 icu:x64-windows... Building icu[core,tools]:x64-windows... -- Using cached icu4c-73_1-src.tgz. -- Cleaning sources at C:/vcpkg/buildtrees/icu/src/c-73_1-src-3575e21c7c.clean. Use --editable to skip cleaning for the packages you specify. -- Extracting source C:/vcpkg/downloads/icu4c-73_1-src.tgz -- Applying patch disable-escapestr-tool.patch -- Applying patch remove-MD-from-configure.patch -- Applying patch fix_parallel_build_on_windows.patch -- Applying patch fix-extra.patch -- Applying patch mingw-dll-install.patch -- Applying patch disable-static-prefix.patch -- Applying patch fix-win-build.patch -- Using source at C:/vcpkg/buildtrees/icu/src/c-73_1-src-3575e21c7c.clean -- Found external ninja('1.10.2'). -- Getting CMake variables for x64-windows -- Using cached msys2-autoconf-wrapper-20221207-1-any.pkg.tar.zst. -- Using cached msys2-automake-wrapper-20221207-1-any.pkg.tar.zst. -- Using cached msys2-binutils-2.40-1-x86_64.pkg.tar.zst. -- Using cached msys2-libtool-2.4.7-3-x86_64.pkg.tar.zst. -- Using cached msys2-make-4.4.1-1-x86_64.pkg.tar.zst. -- Using cached msys2-pkgconf-1.9.4-1-x86_64.pkg.tar.zst. -- Using cached msys2-which-2.21-4-x86_64.pkg.tar.zst. -- Using cached msys2-autoconf-archive-2022.09.03-1-any.pkg.tar.zst. -- Using cached msys2-bash-5.2.015-1-x86_64.pkg.tar.zst. -- Using cached msys2-coreutils-8.32-5-x86_64.pkg.tar.zst. -- Using cached msys2-file-5.44-5-x86_64.pkg.tar.zst. -- Using cached msys2-gawk-5.2.1-2-x86_64.pkg.tar.zst. -- Using cached msys2-grep-1~3.0-6-x86_64.pkg.tar.zst. -- Using cached msys2-gzip-1.12-2-x86_64.pkg.tar.zst. -- Using cached msys2-diffutils-3.9-1-x86_64.pkg.tar.zst. -- Using cached msys2-sed-4.9-1-x86_64.pkg.tar.zst. -- Using cached msys2-msys2-runtime-3.4.6-1-x86_64.pkg.tar.zst. -- Using cached msys2-autoconf2.71-2.71-1-any.pkg.tar.zst. -- Using cached msys2-automake1.16-1.16.5-1-any.pkg.tar.zst. -- Using cached msys2-libiconv-1.17-1-x86_64.pkg.tar.zst. -- Using cached msys2-libintl-0.21-2-x86_64.pkg.tar.zst. -- Using cached msys2-zlib-1.2.13-1-x86_64.pkg.tar.zst. -- Using cached msys2-tar-1.34-3-x86_64.pkg.tar.zst. -- Using cached msys2-findutils-4.9.0-3-x86_64.pkg.tar.zst. -- Using cached msys2-gmp-6.2.1-2-x86_64.pkg.tar.zst. -- Using cached msys2-gcc-libs-11.3.0-3-x86_64.pkg.tar.zst. -- Using cached msys2-libbz2-1.0.8-4-x86_64.pkg.tar.zst. -- Using cached msys2-liblzma-5.4.1-1-x86_64.pkg.tar.zst. -- Using cached msys2-libzstd-1.5.4-1-x86_64.pkg.tar.zst. -- Using cached msys2-libreadline-8.2.001-3-x86_64.pkg.tar.zst. -- Using cached msys2-mpfr-4.2.0-2-x86_64.pkg.tar.zst. -- Using cached msys2-libpcre-8.45-3-x86_64.pkg.tar.zst. -- Using cached msys2-m4-1.4.19-2-x86_64.pkg.tar.zst. -- Using cached msys2-perl-5.36.0-1-x86_64.pkg.tar.zst. -- Using cached msys2-ncurses-6.4-1-x86_64.pkg.tar.zst. -- Using cached msys2-libcrypt-2.1-4-x86_64.pkg.tar.zst. -- Using msys root at C:/vcpkg/downloads/tools/msys2/87962f0d86055c95 CMake Warning at scripts/cmake/vcpkg_configure_make.cmake:269 (message): Unable to find system dir in the PATH variable! Appending required msys paths! Call Stack (most recent call first): ports/icu/portfile.cmake:54 (vcpkg_configure_make) scripts/ports.cmake:168 (include) -- Generating configure for x64-windows -- Finished generating configure for x64-windows -- Using cached mingw-w64-i686-pkgconf-1~1.8.0-2-any.pkg.tar.zst. -- Using cached msys2-msys2-runtime-3.4.6-1-x86_64.pkg.tar.zst. -- Using msys root at C:/vcpkg/downloads/tools/msys2/6f3fa1a12ef85a6f -- Configuring x64-windows-dbg -- Configuring x64-windows-rel -- Building x64-windows-dbg -- Installing x64-windows-dbg CMake Error at scripts/cmake/vcpkg_execute_build_process.cmake:134 (message): Command failed: C:/vcpkg/downloads/tools/msys2/87962f0d86055c95/usr/bin/make.exe -j 17 --trace -f Makefile install DESTDIR=/C/vcpkg/packages/icu_x64-windows Working Directory: C:/vcpkg/buildtrees/icu/x64-windows-dbg/ See logs for more information: C:\vcpkg\buildtrees\icu\install-x64-windows-dbg-out.log C:\vcpkg\buildtrees\icu\install-x64-windows-dbg-err.log Call Stack (most recent call first): scripts/cmake/vcpkg_build_make.cmake:168 (vcpkg_execute_build_process) scripts/cmake/vcpkg_install_make.cmake:2 (vcpkg_build_make) ports/icu/portfile.cmake:144 (vcpkg_install_make) scripts/ports.cmake:168 (include) error: building icu:x64-windows failed with: BUILD_FAILED Elapsed time to handle icu:x64-windows: 6.5 min Please ensure you're using the latest port files with git pull and vcpkg update. Then check for known issues at: https://github.com/microsoft/vcpkg/issues?q=is%3Aissue+is%3Aopen+in%3Atitle+icu You can submit a new issue at: https://github.com/microsoft/vcpkg/issues/new?title=[icu]+Build+error&body=Copy+issue+body+from+C%3A%2Fvcpkg%2Finstalled%2Fvcpkg%2Fissue_body.md Additional context This error has already been fixed in the https://github.com/microsoft/vcpkg/issues/32711 This error has already been fixed in the https://github.com/microsoft/vcpkg/issues/32711 Does PR https://github.com/microsoft/vcpkg/pull/32750 resolve your issue? This error has already been fixed in the https://github.com/microsoft/vcpkg/issues/32711 Does PR #32750 resolve your issue? I'm seeing this as well in 2023.08.09 which should have that PR unfortunately. The last test of the installation of the ICU package this week led to the error again. I can't build my project because of this. I have a tentative fix in my pull request. Hopefully it also works for you. I tested that on myself. It works. Thanks on flmmkch
gharchive/issue
2023-10-12T13:22:16
2025-04-01T06:39:35.888011
{ "authors": [ "LilyWangLL", "flmmkch", "gennadij", "trileyinvicro" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/issues/34450", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1974062984
[libressl] No .cmake files inside the share directory after vcpkg install Describe the bug find_package(LibreSSL) fails because the port has no .cmake file inside its share deployment folder. Environment OS: Windows Compiler: MSVC 19.37.32825.0 To Reproduce I'm using vcpkg in manifest mode. Create a vcpkg.json with this content: { "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", "dependencies": [ "libressl" ] } Create a CMakeLists.txt with this content: project(MyProj CXX) find_package(LibreSSL REQUIRED) After generating the CMake cache, the output is: 1> CMake generation started for default configuration: 'x64-Debug'. 1> Found and using vcpkg toolchain file (C:/Dev/vcpkg/scripts/buildsystems/vcpkg.cmake). 1> Command line: "C:\Windows\system32\cmd.exe" /c "%SYSTEMROOT%\System32\chcp.com 65001 >NUL && "C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\PROFESSIONAL\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\CMake\bin\cmake.exe" -G "Ninja" -DCMAKE_BUILD_TYPE:STRING="Debug" -DCMAKE_INSTALL_PREFIX:PATH="D:\Dev\libresslcmaketest\out\install\x64-Debug" -DCMAKE_C_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.37.32822/bin/Hostx64/x64/cl.exe" -DCMAKE_CXX_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.37.32822/bin/Hostx64/x64/cl.exe" -DCMAKE_MAKE_PROGRAM="C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\PROFESSIONAL\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\Ninja\ninja.exe" -DCMAKE_TOOLCHAIN_FILE="C:/Dev/vcpkg/scripts/buildsystems/vcpkg.cmake" "D:\Dev\libresslcmaketest" 2>&1" 1> Working directory: D:\Dev\libresslcmaketest\out\build\x64-Debug 1> [CMake] CMake Warning (dev) at CMakeLists.txt:1 (project): 1> [CMake] cmake_minimum_required() should be called prior to this top-level project() 1> [CMake] call. Please see the cmake-commands(7) manual for usage documentation of 1> [CMake] both commands. 1> [CMake] This warning is for project developers. Use -Wno-dev to suppress it. 1> [CMake] 1> [CMake] -- Running vcpkg install 1> [CMake] Detecting compiler hash for triplet x64-windows... 1> [CMake] All requested packages are currently installed. 1> [CMake] Total install time: 300 ns 1> [CMake] -- Running vcpkg install - done 1> [CMake] CMake Error at C:/Dev/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package): 1> [CMake] By not providing "FindLibreSSL.cmake" in CMAKE_MODULE_PATH this project has 1> [CMake] asked CMake to find a package configuration file provided by "LibreSSL", 1> [CMake] but CMake did not find one. 1> [CMake] 1> [CMake] Could not find a package configuration file provided by "LibreSSL" with any 1> [CMake] of the following names: 1> [CMake] 1> [CMake] LibreSSLConfig.cmake 1> [CMake] libressl-config.cmake 1> [CMake] 1> [CMake] Add the installation prefix of "LibreSSL" to CMAKE_PREFIX_PATH or set 1> [CMake] "LibreSSL_DIR" to a directory containing one of the above files. If 1> [CMake] "LibreSSL" provides a separate development package or SDK, be sure it has 1> [CMake] been installed. 1> [CMake] Call Stack (most recent call first): 1> [CMake] CMakeLists.txt:3 (find_package) 1> [CMake] CMake Warning (dev) in D:\Dev\libresslcmaketest\CMakeLists.txt: 1> [CMake] No cmake_minimum_required command is present. A line of code such as 1> [CMake] 1> [CMake] cmake_minimum_required(VERSION 3.26) 1> [CMake] 1> [CMake] should be added at the top of the file. The version specified may be lower 1> [CMake] if you wish to support older CMake versions for this project. For more 1> [CMake] information run "cmake --help-policy CMP0000". 1> [CMake] This warning is for project developers. Use -Wno-dev to suppress it. 1> [CMake] 1> [CMake] -- Configuring incomplete, errors occurred! 1> 'C:\Windows\system32\cmd.exe' '/c "%SYSTEMROOT%\System32\chcp.com 65001 >NUL && "C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\PROFESSIONAL\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\CMake\bin\cmake.exe" -G "Ninja" -DCMAKE_BUILD_TYPE:STRING="Debug" -DCMAKE_INSTALL_PREFIX:PATH="D:\Dev\libresslcmaketest\out\install\x64-Debug" -DCMAKE_C_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.37.32822/bin/Hostx64/x64/cl.exe" -DCMAKE_CXX_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.37.32822/bin/Hostx64/x64/cl.exe" -DCMAKE_MAKE_PROGRAM="C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\PROFESSIONAL\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\Ninja\ninja.exe" -DCMAKE_TOOLCHAIN_FILE="C:/Dev/vcpkg/scripts/buildsystems/vcpkg.cmake" "D:\Dev\libresslcmaketest" 2>&1"' execution failed with error: ''C:\Windows\system32\cmd.exe' '/c "%SYSTEMROOT%\System32\chcp.com 65001 >NUL && "C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\PROFESSIONAL\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\CMake\bin\cmake.exe" -G "Ninja" -DCMAKE_BUILD_TYPE:STRING="Debug" -DCMAKE_INSTALL_PREFIX:PATH="D:\Dev\libresslcmaketest\out\install\x64-Debug" -DCMAKE_C_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.37.32822/bin/Hostx64/x64/cl.exe" -DCMAKE_CXX_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.37.32822/bin/Hostx64/x64/cl.exe" -DCMAKE_MAKE_PROGRAM="C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\PROFESSIONAL\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\Ninja\ninja.exe" -DCMAKE_TOOLCHAIN_FILE="C:/Dev/vcpkg/scripts/buildsystems/vcpkg.cmake" "D:\Dev\libresslcmaketest" 2>&1"' returned with exit code: 1'. Moreover, if you check the share folder inside the libressl port, you'll see that there is no LibreSSLConfig.cmake file inside it. Actually, there is no .cmake file at all. I'll try to add usage.
gharchive/issue
2023-11-02T11:38:31
2025-04-01T06:39:35.894239
{ "authors": [ "amasciotta", "jimwang118" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/issues/34869", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2653324102
[vulkan-validationlayers] ErrorOutOfHostMemory when run Description When running a vulkan project that loads validation layers, I am unable to successfully create an instance due to an ErrorOutOfHostMemory exception Environment OS: Windows (MinGW) IDE: CLion Compiler: g++ 14.2 / clang++ 19.1.3 (Tried both) To Reproduce Steps to reproduce the behavior: ./vcpkg install vulkan-validationlayers Set VK_ADD_LAYER_PATH=@layer_path@ Run program with vulkan validation layers See error vk::createInstance: ErrorOutOfHostMemory Expected behavior The program successfully loads the validation layers Additional context Using system installed Vulkan SDK the error is not present on the same build (running the exe directly without setting VK_ADD_LAYER_PATH) Set VK_ADD_LAYER_PATH=@layer_path@ What did you actually do in this step? Set VK_ADD_LAYER_PATH=@layer_path@ What did you actually do in this step? I set as VK_ADD_LAYER_PATH=vcpkg_installed\x64-mingw-dynamic\bin I have also set it to the absolute path with the same result @InfiniteLoopGameDev Could you please try x64-windows? I am able to confirm that it is specifically vulkan-validationlayers; by replacing the DLL in vcpkg_installed\x64-mingw-dynamic\bin by the one that is provided by the vulkan SDK without actually installing the DLL. I have also tried using the debug version by setting it to VK_ADD_LAYER_PATH=vcpkg_installed\x64-mingw-dynamic\debug\bin. That gave me the following output: mimalloc-redirect: error: unable to find target module. mimalloc-redirect: warning: standard malloc is _not_ redirected! -- using regular malloc/free. (v1.1c) mimalloc: assertion failed: at "C:/Users/<username>/.vcpkg-clion/vcpkg/buildtrees/mimalloc/src/v2.1.7-7cda0129ba.clean/src/options.c":264, mi_add_stderr_output assertion: "mi_out_default == NULL" I'm having the same issue when i use mingw I'm having the same issue when i use mingw @smile-zyk Have you tried with Visual Studio / x64-windows? If, so does it give you the same issue? After much trouble of trying to get WSL2 to work. I have successfully compiled and ran my code with WSL2. So the problem seems to come from Windows I also tried x64-windows-static which also worked (the test on WSL was x64-linux-dynamic) but x64-mingw-static. I now don't know what is happening. It might be that vulkan-validationlayers might not be able to find its dependencies at runtime on Windows host but x64-mingw-static. I now don't know what is happening. Maybe https://github.com/microsoft/mimalloc/issues/542? There is "redirect: unable to find module". BTW does x64-mingw-dynamic work? BTW does x64-mingw-dynamic work? Sadly, No
gharchive/issue
2024-11-12T21:03:23
2025-04-01T06:39:35.905104
{ "authors": [ "FrankXie05", "InfiniteLoopGameDev", "dg0yt", "smile-zyk" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/issues/42128", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
480545676
[easyhook] support static build Library name: easyhook Library description: Source repository URL: https://github.com/EasyHook/EasyHook Project homepage (if different from the source repository): Please Add static easyhook library @JackBoosY thanks please support static build of easyhook @JackBoosY Blocked by #260 #138. Besides static build, it's also desirable to have a dynamic version of EasyHook that is available when using static triplets. Injected DLLs often needs to be self-contained (it should not reference any 3rd party DLLs) because the dependencies of injected DLL is usually not inside the target process's DLL search path. Linking to (the dynamic version of) EasyHook will be fine, because EasyHook will load itself into the target process beforehand. This means we need to build our library with the static triplet, but currently EasyHook cannot be installed using static triplet.. Close this PR until upstream fixes this.
gharchive/issue
2019-08-14T08:22:33
2025-04-01T06:39:35.908923
{ "authors": [ "JackBoosY", "lanyizi", "mmhatami" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/issues/7676", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
519322574
[suitesparse[metis]] build failure Host Environment OS: Windows Compiler: revision To Reproduce Steps to reproduce the behavior: ./vcpkg install suitesparse[metis] --recurse Failure logs The following packages will be built and installed: * metis[core]:x64-windows suitesparse[core,metis]:x64-windows Additional packages (*) will be modified to complete this operation. Starting package 1/2: metis:x64-windows Building package metis[core]:x64-windows... -- Note: metis only supports static library linkage. Building static library. -- Downloading http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.1.0.tar.gz... -- Downloading http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.1.0.tar.gz... Failed. Status: 6;"Couldn't resolve host name" CMake Error at scripts/cmake/vcpkg_download_distfile.cmake:175 (message): Failed to download file. If you use a proxy, please set the HTTPS_PROXY and HTTP_PROXY environment variables to "https://user:password@your-proxy-ip-address:port/". Otherwise, please submit an issue at https://github.com/Microsoft/vcpkg/issues Call Stack (most recent call first): ports/metis/portfile.cmake:8 (vcpkg_download_distfile) scripts/ports.cmake:94 (include) Error: Building package metis:x64-windows failed with: BUILD_FAILED Please ensure you're using the latest portfiles with `.\vcpkg update`, then submit an issue at https://github.com/Microsoft/vcpkg/issues including: Package: metis:x64-windows Vcpkg version: 2019.09.12-nohash Additional context Add any other context about the problem here, such as what you have already tried to resolve the issue. related to: https://github.com/microsoft/vcpkg/issues/8336 @xarthurx Normally this error means either they are behind a proxy or the download site vcpkg is trying to download the file from is unavailable... I just tried to contact the download site "http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.1.0.tar.gz" to see if it would download the file to my pc but I get an error: This site can't be reached glaros.dtc.umn.edu's server IP address could not be found. ERR_NAME_NOT_RESOLVED So the site may indeed be down or has been taken offline. Seems it's site has problem. Please download this package and put it into VCPKG_PATH/downloads then rebuild suitesparse. metis-5.1.0.tar.gz Thanks. @xarthurx Does this issue solved? @JackBoosY Yes. I'll close it now. Thanks for the help. I think we can still fix this issue long term though. (I just had this failure again since this site seems to be down again.) METIS is now distributed via github: https://github.com/KarypisLab/METIS However, the previously included GKLib library is not a sub module, so that would also need to be added: https://github.com/KarypisLab/GKlib Some changes have been made so the patches we currently have will not apply anymore. I will try and get a PR together, but wanted to make sure this was in a comment somewhere.
gharchive/issue
2019-11-07T15:04:15
2025-04-01T06:39:35.917203
{ "authors": [ "JackBoosY", "SallySoul", "timautry", "xarthurx" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/issues/8942", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
529187694
[fmt] build failure while cygwin is installed and having a PATH variable to it Host Environment OS: Win 10 Compiler: Vcpkg version: 2019.09.12-nohash To Reproduce Steps to reproduce the behavior: .\vcpkg.exe install fmt Failure logs PS C:\dev\tools\vcpkg> .\vcpkg.exe install fmt The following packages will be built and installed: fmt[core]:x86-windows Starting package 1/1: fmt:x86-windows Building package fmt[core]:x86-windows... -- Downloading https://github.com/fmtlib/fmt/archive/6.0.0.tar.gz... CMake Error at C:/dev/tools/vcpkg/scripts/cmake/vcpkg_download_distfile.cmake:185 (file): file RENAME failed to rename /cygdrive/c/dev/tools/vcpkg/C:/dev/tools/vcpkg/downloads/temp/fmtlib-fmt-6.0.0.tar.gz to /cygdrive/c/dev/tools/vcpkg/C:/dev/tools/vcpkg/downloads/fmtlib-fmt-6.0.0.tar.gz because: No such file or directory Call Stack (most recent call first): C:/dev/tools/vcpkg/scripts/cmake/vcpkg_from_github.cmake:132 (vcpkg_download_distfile) C:/dev/tools/vcpkg/ports/fmt/portfile.cmake:2 (vcpkg_from_github) C:/dev/tools/vcpkg/scripts/ports.cmake:94 (include) Error: Building package fmt:x86-windows failed with: BUILD_FAILED Please ensure you're using the latest portfiles with .\vcpkg update, then submit an issue at https://github.com/Microsoft/vcpkg/issues including: Package: fmt:x86-windows Vcpkg version: 2019.09.12-nohash Additionally, attach any relevant sections from the log files above. PS C:\dev\tools\vcpkg> .\vcpkg update Using local portfile versions. To update the local portfiles, use git pull. No packages need updating. Additional context PS was run as admin, 98GBs free on C:, I'll stand by for any requests for info. x86-windows.vcpkg_abi_info.txt was created in a "C:\dev\tools\vcpkg\buildtrees\fmt" directory Content of the file: CONTROL 9cebf357c183e641caa402126ebc6d6688d1a771 portfile.cmake b2434022329236462cc9304b9e3c3a19ef69faa8 cmake 3.14.5 powershell ab1effc926b000a6adc12198a1886514ec203621a53b0cd7ec1cd9a8225dccda7e857feaabcfba4004bea73129b986abaad777c4573f44e0af70411226ce08b0 vcpkg_fixup_cmake_targets 0ddb96472da00d45d10e0b0bf037bfb744164d0a triplet e8dc96fd479b53bb0e6748625827c8268017e35a features core Looks like the cygdrive created a wierd directory for C: `PS C:\dev\tools\vcpkg> ls Directory: C:\dev\tools\vcpkg Mode LastWriteTime Length Name d----- 11/27/2019 3:01 AM .github d----- 11/27/2019 3:06 AM buildtrees d----- 11/27/2019 3:06 AM C d----- 11/27/2019 3:01 AM docs d----- 11/27/2019 3:06 AM downloads d----- 11/27/2019 3:06 AM installed d----- 11/27/2019 3:06 AM packages d----- 11/27/2019 3:01 AM ports d----- 11/27/2019 3:03 AM scripts d----- 11/27/2019 3:03 AM toolsrc d----- 11/27/2019 3:01 AM triplets -a---- 11/27/2019 3:01 AM 8 .gitattributes -a---- 11/27/2019 3:01 AM 5625 .gitignore -a---- 11/27/2019 3:01 AM 0 .vcpkg-root -a---- 11/27/2019 3:01 AM 100 bootstrap-vcpkg.bat -a---- 11/27/2019 3:01 AM 109 bootstrap-vcpkg.sh -a---- 11/27/2019 3:01 AM 368962 CHANGELOG.md -a---- 11/27/2019 3:01 AM 2432 CONTRIBUTING.md -a---- 11/27/2019 3:01 AM 1096 LICENSE.txt -a---- 11/27/2019 3:01 AM 2334 NOTICE.txt -a---- 11/27/2019 3:01 AM 4345 README.md -a---- 11/27/2019 3:01 AM 3282 README_zh_CN.md -a---- 11/27/2019 3:03 AM 1014272 vcpkg.exe` The same thing just occurred for me while installing SDL2 OK, I already have an install of cygwin on my computer. I renamed the "c:\cygwin64" directory (which "C:\cygwin64\bin"i s in my PATH env) to "c:\cygwin64BAK" and all the packages install. I don't know if it's because of cygwin being there, git, or the CMake in that install conflicting, but it looks like it has something to do with that. Should be enough for you guys to reproduce the issue. Duplicated to #3205, #5856. I don't know if you'd like me to edit the title of this issue, there is no problem installing fmt. My problem appears to be installing any package via vcpkg while cygwin is installed and having a PATH variable to it. Also, I am not behind a proxy... Just FYI for setting up an environment to replicate. Hi, @toboRlivE You Can use Visual Studio 2019, not cygwin, link https://visualstudio.microsoft.com/zh-hans/vs/?rr=http%3A%2F%2Fwww.baidu.com%2Flink%3Furl%3DSVTex4JDby4HUtB3gxXDHqArrMBZVveLt-rW0hhxWp2B6Yr7zThG_Oyd8vLX72rg%26wd%3D%26eqid%3De1838db7000095d9000000065de47f03 Community 2019 is free. Professionnal 2019 and Enterprise 2019 need to pay. Thanks, I am using VS2019 already. I just have an install of cygwin on my computer previously, and when I installed and started using vcpkg, I came across that issue. I read through a few of the issues that seem to have the same symptoms, so I added as much detail as I could so you could replicate the problem. I don't think this is a port bug, I'm pretty sure it has to do with vcpkg internals conflicting with cygwin being in my PATH env. Just wanted to leave a reminder that if I mangle the path to my cygwin install, or remove the PATH variable, vcpkg installs packages with no problem. I don't know how to change the tag on this issue. Would you like me to change the Label or Title of the issue? @toboRlivE, thanks for reporting this issue and providing us details about this issue! We will try to repro it. Confirmed, this issue caused by using cmake under cygwin. Repro steps: git clone https://github.com/microsoft/vcpkg ./bootstrap-vcpkg.bat Installed cygwin(select cmake) Add C:\cygwin64\bin to PATH ./vcpkg install fmt VCPKG try to find cmake that installed by system first, if it doesn't exist, it will download a new one. If it exist, then it will use that one. Using cmake under cygwin looks has some issues here. This issue current disappears in the latest vcpkg(2021-08-03-1a6d67b8150e94b7f473c6ab1c0cfd), it's due to the camke version used in vcpkg(3.20.2) is large than the version of cygwin(3.20.0), If set the cmake version used by vcpkg to 3.20.0, this issue will appear again. Oh, I should record this issue number, given the many duplicate issues. The cygwin cmake needs to be recognized. IIRC one indicator is the list of generators. @Cheney-W can you share the output of cmake -G for cygwin's cmake? C:\cygwin64\bin>cmake.exe -G CMake Error: No generator specified for -G Generators * Unix Makefiles = Generates standard UNIX makefiles. Ninja = Generates build.ninja files. Ninja Multi-Config = Generates build-<Config>.ninja files. CodeBlocks - Ninja = Generates CodeBlocks project files. CodeBlocks - Unix Makefiles = Generates CodeBlocks project files. CodeLite - Ninja = Generates CodeLite project files. CodeLite - Unix Makefiles = Generates CodeLite project files. Eclipse CDT4 - Ninja = Generates Eclipse CDT 4.0 project files. Eclipse CDT4 - Unix Makefiles= Generates Eclipse CDT 4.0 project files. Kate - Ninja = Generates Kate project files. Kate - Unix Makefiles = Generates Kate project files. Sublime Text 2 - Ninja = Generates Sublime Text 2 project files. Sublime Text 2 - Unix Makefiles = Generates Sublime Text 2 project files. Thanks! This confirms that there are no Windows generators (not even MinGW). IIRC this identical with the cmake in the msys subsystem of MSYS2. I will verify this later, on a Windows machine. The latest vcpkg currently uses CMake 3.30.1. PS E:\vcpkg> ./vcpkg version vcpkg package management program version 2024-11-12-eb492805e92a2c14a230f5c3deb3e89f6771c321 See LICENSE.txt for license information. The latest cygwin version is 3.5.4, which includes three optional CMake versions: 3.28.3, 3.25.3, 3.23.2. Whenever I intentionally make the CMake version in vcpkg the same as in cygwin, I get an error. Currently I have tried CMake 3.28.3 and CMake 3.25.3, both give the following error: PS E:\vcpkg> ./vcpkg install fmt Computing installation plan... The following packages will be built and installed: fmt:x64-windows@11.0.2#1 Detecting compiler hash for triplet x64-windows... error: while detecting compiler information: The log file content at "E:\vcpkg\buildtrees\detect_compiler\stdout-x64-windows.log" is: CMake Error at E:/vcpkg/scripts/ports.cmake:143 (message): Cannot find port: Directory does not exist: E;/vcpkg/scripts/detect_compiler error: vcpkg was unable to detect the active compiler's information. See above for the CMake failure output. If the CMake versions are inconsistent, the installation is successful. The Cygwin environment, as the derived MSYS2 environment, is a POSIX-like runtime, not a Windows-like runtime. That's why Cygwin CMake uses POSIX path separator (/), POSIX path list separators (:), and POSIX paths (/C/Windows). This is incompatible by purpose. It is meant for buildings programs which are completely unaware of Windows. IIRC these versions of CMake also come without Visual Studio generators, so they are easy to detect with cmake -G. This was elaborated in a previous issue. This is a frequent issue. The vcpkg team should really improve the diagnostics for this case. All information is readily available.
gharchive/issue
2019-11-27T08:19:53
2025-04-01T06:39:35.944938
{ "authors": [ "AlvinZhangH", "Cheney-W", "MonicaLiu0311", "PhoebeHui", "dg0yt", "toboRlivE" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/issues/9109", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
904884451
[libssh] disable gssapi What does your PR fix? The .pc file of libssh does not add the appropriate linking flags for gssapi when it is found as a system library on linux or osx. This patch disables the feature so libssh can still be linked against on those platforms. Potential fix for Fixes #18166. Which triplets are supported/not supported? Have you updated the CI baseline? No changes. Does your PR follow the maintainer guide? Yes, to the best of my knowledge. If you have added/updated a port: Have you run ./vcpkg x-add-version --all and committed the result? Yes. Thanks for your fixing @mcmtroffaes. Thanks @mcmtroffaes !
gharchive/pull-request
2021-05-28T07:52:30
2025-04-01T06:39:35.949278
{ "authors": [ "NancyLi1013", "mcmtroffaes", "strega-nil-ms" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/pull/18169", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
996143784
[Guilite] Add new port Describe the pull request The smallest header-only GUI library (4 KLOC) for all platforms. https://github.com/idea4good/GuiLite What does your PR fix? New port Which triplets are supported/not supported? Have you updated the CI baseline? All Does your PR follow the maintainer guide? Yes If you have added/updated a port: Have you run ./vcpkg x-add-version --all and committed the result? Yes If you are still working on the PR, open it as a Draft: https://github.blog/2019-02-14-introducing-draft-pull-requests/ Thanks for the new port!
gharchive/pull-request
2021-09-14T15:18:43
2025-04-01T06:39:35.953524
{ "authors": [ "BillyONeal", "SamuelMarks" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/pull/20156", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2027537739
[rtaudio] update to 6.0.1 Fixes https://github.com/microsoft/vcpkg/issues/35504 Features passed with following triplets: x86-windows x64-windows x64-windows-static [x] Changes comply with the maintainer guide [x] SHA512s are updated for each updated download [ ] The "supports" clause reflects platforms that may be fixed by this new version [ ] Any fixed CI baseline entries are removed from that file. [x] Any patches that are no longer applied are deleted from the port's directory. [x] The version database is fixed by rerunning ./vcpkg x-add-version --all and committing the result. [x] Only one version is added to each modified port's versions file. /azp run Thanks for the update!
gharchive/pull-request
2023-12-06T02:42:02
2025-04-01T06:39:35.958271
{ "authors": [ "BillyONeal", "Cheney-W" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/pull/35520", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2529890499
[rocksdb] update to 9.6.1 [x] Changes comply with the maintainer guide. [x] SHA512s are updated for each updated download. [x] The "supports" clause reflects platforms that may be fixed by this new version. [x] Any fixed CI baseline entries are removed from that file. [x] Any patches that are no longer applied are deleted from the port's directory. [x] When updating the upstream version, the "port-version" is reset (removed from vcpkg.json). [x] The version database is fixed by rerunning ./vcpkg x-add-version --all and committing the result. [x] Only one version is added to each modified port's versions file. Thanks for the update!
gharchive/pull-request
2024-09-17T03:16:16
2025-04-01T06:39:35.961680
{ "authors": [ "BillyONeal", "c8ef" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/pull/41012", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
481820716
QoL: Buildtype variables for looping over buildtypes While working on the qt scripts I often defined those variables below to avoid unnecessary code duplication to loop over the different buildtypes TODO: [ ] Rename VCPKG_BUILD_TRIPLET_* to something different ? [ ] Remove VCPKG_BUILDTREE_TRIPLET_DIR_ ? Thanks for the PR! This in principle seems like it could be a useful abstraction, but I'd like to see it demonstrated in multiple contexts before merging. Specifically, if it turns out to only be useful in Qt5, then it should be private to Qt5. However, if it can be used to make code significantly cleaner and clearer in more contexts, I'd like to see this PR introduce at least two of those refactorings. TODO (only 2 of N): [ ] Refactor vcpkg_build_cmake [ ] Refactor vcpkg_build_msbuild [ ] Refactor vcpkg_build_qmake [ ] Refactor vcpkg_configure_cmake [ ] Refactor vcpkg_configure_meson [ ] Refactor vcpkg_configure_qmake [ ] Refactor vcpkg_fixup_cmake_targets [ ] Refactor vcpkg_install_meson (a bit short for a refactor, but consistency is important) [ ] Refactor vcpkg_install_msbuild [ ] Refactor an unknown number of ports which might benift from the PR (purely optional; but at least qt if the update to 5.12.4 PR is merged.) Please resolve these conflicts. Thanks. Pinging @Neumann-A for response. Is work still being done for this PR? @JackBoosY: You put the PR back into Draft?!?! I consider it finished for the time unless there is something which needs to ne fixed which I don't know of or you want some changes to it. Maybe run a full rebuild of everything to check if everything is working as intended. @Neumann-A Sorry, my fault. /azp run Could you select some ports to test these functions? hmm most regressions are failed due to download failures. The rest seems to be port build issues and not related to these changes. Test result: sdl2:x64-uwp: failed on master branch. Waiting for other pipeline results... Hmm from the whole list only two ports seem to be relevant which are: seal:x64-linux : needs further investigate libfabric:x64-windows-static : needs further investigate I was able to build both successfully using this branch. @Neumann-A Yep, I also can't repro that in my machine. OMG...more and more different regressions... [ ] osg:x64-linux [ ] signalrclient:x64-linux [ ] opencc:x64-linux [ ] seal:x64-linux [ ] xmsh:x64-osx [ ] rply:x64-osx [ ] seal:x64-osx [ ] signalrclient:x64-osx [ ] gmp:x64-osx [ ] rply:x64-uwp [ ] solid3:x64-uwp [ ] protobuf:x64-uwp [ ] signalrclient:x64-windows [ ] seal:x64-windows [ ] libaiff:x64-windows [ ] monkeys-audio:x64-windows [ ] rply:x64-windows [ ] pdal:x64-windows [ ] gmp:x64-windows [ ] dmlc:x64-windows [ ] icu:x64-windows [ ] signalrclient:x64-windows-static [ ] seal:x64-windows-static [ ] dcmtk:x64-windows-static [ ] icu:x64-windows-static [ ] rply:x64-windows-static [ ] pdal:x64-windows-static [ ] gmp:x64-windows-static [ ] zxing-cpp:x64-windows-static [ ] libfabric:x64-windows-static [ ] signalrclient:x86-windows [ ] seal:x86-windows [ ] monkeys-audio:x86-windows [ ] gsoap:x86-windows [ ] rply:x86-windows [ ] pdal:x86-windows [ ] gmp:x86-windows [ ] icu:x86-windows /azp run This PR always seems to be the first one that triggers msys losing it ¯\_(ツ)_/¯ /azp run Either the msys servers relied upon by some ports are broken causing CI failure, or something in this change causes CI to hang consistently. This change depends on msys being fixed as in https://github.com/microsoft/vcpkg/pull/11443 or https://github.com/microsoft/vcpkg/pull/11471 @JackBoosY: None of those regressions look like they are caused by this PR. I assume some hidden unresolved dependencies in the ports which generate the errors in a full rebuild. (also see #11502 for comparison) pdal: -> find_package issue. PostgreSQL::PostgreSQL in wrapper used without check if it actually exists. @Neumann-A That's correct, I only want to know which port failed on the baseline. @JackBoosY: Ah okay was just wondering due to the requires:author-response tag /azp run @Neumann-A pipelines are fixed, could you resolve the file conflict? Thanks. @JackBoosY: done Can you merge the latest changes into this branch? /azp run /azp run @Neumann-A, ocilib:x86-windows and ocilib:x64-windows failed with debug mode, I noticed it only build release mode before, the solution doesn't configure debug mode, could you help have a look? "D:\buildtrees\ocilib\x86-windows-dbg\v4.6.4-271d6c24cf\proj\dll\ocilib_dll_vs2019.sln" (Rebuild target) (1) -> (ValidateSolutionConfiguration target) -> D:\buildtrees\ocilib\x86-windows-dbg\v4.6.4-271d6c24cf\proj\dll\ocilib_dll_vs2019.sln.metaproj : error MSB4126: The specified solution configuration "Debug|x86" is invalid. Please specify a valid solution configuration using the Configuration and Platform properties (e.g. MSBuild.exe Solution.sln /p:Configuration=Debug /p:Platform="Any CPU") or leave those properties blank to use the default solution configuration. [D:\buildtrees\ocilib\x86-windows-dbg\v4.6.4-271d6c24cf\proj\dll\ocilib_dll_vs2019.sln] monkeys-audio regression will be fixed in another PR. Closing this PR since it seems that no progress is being made. Please reopen if work is still being done.
gharchive/pull-request
2019-08-16T23:39:29
2025-04-01T06:39:35.983558
{ "authors": [ "BillyONeal", "JackBoosY", "Neumann-A", "PhoebeHui", "ras0219-msft" ], "repo": "microsoft/vcpkg", "url": "https://github.com/microsoft/vcpkg/pull/7733", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1660131921
[Survey] User feedback VSCode Version: 1.77.1, Extension Version: 1.4.8, OS: OSX 1. Overall, how would you rate your experience with the Stream Analytics Visual Studio Code Extension? Please rate us from 1 (poor) to 10 (excellent). 2. What do you like or dislike about the Stream Analytics Visual Studio Code Extension? 3. What improvements do you suggest for Stream Analytics Visual Studio Code Extension? 7 Have issue with docker image good I like it for being user friendly but can be more intuitive more clear visual understanding with interactive learning pattern for the new user, problem solving help when issues arise What issues are you having when using Azure Stream Analytics extension?
gharchive/issue
2023-04-10T02:25:54
2025-04-01T06:39:35.989889
{ "authors": [ "myintn02", "ruiminwang" ], "repo": "microsoft/vscode-asa", "url": "https://github.com/microsoft/vscode-asa/issues/96", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
534054647
Azure Remote Debugging is currently only supported for Node.js apps on Linux. Action: appService.StartRemoteDebug Error type: Error Error Message: Azure Remote Debugging is currently only supported for Node.js apps on Linux. Version: 0.16.2 OS: win32 OS Release: 10.0.17763 Product: Visual Studio Code Product Version: 1.40.2 Language: en @ereeneid Thanks for reporting. If you're trying to remote debug, it's currently only supported on Node.js. What are you trying to remote debug?
gharchive/issue
2019-12-06T15:02:24
2025-04-01T06:39:35.991928
{ "authors": [ "ereeneid", "nturinski" ], "repo": "microsoft/vscode-azureappservice", "url": "https://github.com/microsoft/vscode-azureappservice/issues/1325", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
707118120
test Does this occur consistently? Repro steps: Action: appService.Deploy Error type: Error Error Message: "resourceGroupName" should satisfy the constraint - "Pattern": /^[-w._()]+[^.]$/ Version: 0.19.0 OS: win32 OS Release: 10.0.19041 Product: Visual Studio Code Product Version: 1.49.1 Language: en Call Stack WebApps._getConfiguration extension.bundle.js:225:1884985 extension.bundle.js:225:3167679extension.bundle.js:225:3167679 WebApps.getConfiguration extension.bundle.js:225:3167657 SiteClient.<anonymous> extension.bundle.js:164:145908 extension.bundle.js:164:142930extension.bundle.js:164:142930 i extension.bundle.js:164:142616 SiteClient.getSiteConfig extension.bundle.js:164:145730 extension.bundle.js:1:552564extension.bundle.js:1:552564 fulfilled extension.bundle.js:1:551148 processTicksAndRejections task_queues.js:94:5 What did you use as your app name?
gharchive/issue
2020-09-23T07:26:03
2025-04-01T06:39:35.994986
{ "authors": [ "nturinski", "snsclanceo" ], "repo": "microsoft/vscode-azureappservice", "url": "https://github.com/microsoft/vscode-azureappservice/issues/1780", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
707148198
Region issues Does this occur consistently? Repro steps: Action: azureFunctions.createFunctionApp Error type: Unauthorized Error Message: The scale operation is not allowed for this subscription in this region. Try selecting different region or scale option. Version: 0.24.1 OS: linux OS Release: 5.4.0-47-generic Product: Visual Studio Code Product Version: 1.48.2 Language: en Call Stack new RestError extension.bundle.js:48:94460 extension.bundle.js:48:1291123 processTicksAndRejections task_queues.js:85:5 Please try creating your function app in a different region. If this still doesn't work, please provide detailed repro steps.
gharchive/issue
2020-09-23T08:13:13
2025-04-01T06:39:35.998244
{ "authors": [ "chimerashashi", "nturinski" ], "repo": "microsoft/vscode-azurefunctions", "url": "https://github.com/microsoft/vscode-azurefunctions/issues/2406", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1149624162
Debugging Azure Function with vscode I've been struggling to debug an HttpTrigger type azure function with vscode. My assumption is that the issue might be related to the config files within .vscode/ or at worst, my own environment. As of now, when I try to debug a recently created function (func init) I get the following error from vscode: > Executing task: dotnet clean /property:GenerateFullPaths=true /consoleloggerparameters:NoSummary < execvp(3) failed.: Permission denied The terminal process "dotnet 'clean', '/property:GenerateFullPaths=true', '/consoleloggerparameters:NoSummary'" failed to launch (exit code: 1) Inside .vscode/ there 4 files: ├── extensions.json ├── launch.json ├── settings.json └── tasks.json and inside task.json there are a few dotnet related commands that are causing the error above. Despite these files being automatically generated by core tools (func) I removed the dotnet lines from task.json and hit Debug. After a few seconds I get: Failed to detect running Functions host within "60" seconds. You may want to adjust the "azureFunctions.pickProcessTimeout" setting. Is there any command to automatically generate the debug configuration? e.g. ".NET generate assets for build and debug" Have you faced anything similar to it? My env settings: OS: Ubuntu 20.04.4 LTS Code:1.64.2 x64 Azure Functions Extension: v1.6.0 Core Tools Version: 3.0.3904 RaphaelSilv Thanks for reporting! It looks like the dotnet clean command isn't able to run in its current directory due to user permissions. The tasks.json is necessary to debug because we are looking for that task to attach to the process, so deleting it will cause some issues. Replace the type from process to shell inside tasks.json solved it. FWIW: omnisharp-vscode #4556 Thanks for bringing this issue to our attention. Seems like this might be an upstream issue that we can't do anything about. Changing it to shell seems like it has some negative performance impacts, but it's worth to use this workaround until it can get resolved. This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines. Happy Coding!
gharchive/issue
2022-02-24T18:40:25
2025-04-01T06:39:36.004250
{ "authors": [ "AzCode-Bot", "RaphaelSilv", "nturinski" ], "repo": "microsoft/vscode-azurefunctions", "url": "https://github.com/microsoft/vscode-azurefunctions/issues/3053", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1520339128
[Suggestion] It would be better to change the "Downloaded to 'Users/...'. Succeeded" to the "Download to 'Users/...'. Succeeded" in the Azure: Activity Log window OS: Win10 Build Version: 20230104.1 Regression: Not a regression Repro Steps: Expand a storage account -> Expand a blob container-> Right click a file/folder -> Click "Download...". Check the log message in the Azure: Activity Log window. Actual: Show the "Downloaded to 'Users/...'. Succeeded" in the Azure: Activity Log window. Suggestion; It would be better to change the "Downloaded to 'Users/...'. Succeeded" to the "Download to 'Users/...'. Succeeded" in the Azure: Activity Log window. More Info: This issue doesn't reproduce after uploading a file/folder. We should remove the 'ed' from 'downloaded' and also remove the extra period as well.
gharchive/issue
2023-01-05T08:46:55
2025-04-01T06:39:36.009000
{ "authors": [ "MicroFish91", "v-xinda" ], "repo": "microsoft/vscode-azurestorage", "url": "https://github.com/microsoft/vscode-azurestorage/issues/1192", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
520291565
message(DEBUG "...") doesn't display in VSCode output? Brief Issue Summary While working on my projects I added some message(DEBUG "...") statements. I also set "cmake.loggingLevel": "debug". Expected: What I expected to see was the message statements from DEBUG and above. Apparent Behavior: What I do see is that there is some extra info the the VSCode Output [driver] messages etc. But none of the message(DEBUG "...") statements. If I use message(STATUS "...") then I do see the messages. Have I misinterpreted the cmake.loggingLevel settings? Is that not controlling the log level of CMake when it runs? CMake Tools Log [driver] Start configure [driver] Runnnig pre-configure checks and steps [driver] Run _refreshExpansions [cms-driver] Run doRefreshExpansions [driver] Run _refreshExpansions cb [cmake] Configuring done [cmake] CMake Deprecation Warning: [cmake] The 'cmake-server(7)' is deprecated. Please port clients to use the [cmake] 'cmake-file-api(7)' instead. [cmake] [cmake] [cmake] Generating done [cache] Reading CMake cache file c:/Users/Thomas/SourceTree/traceup/cext/build/Release/CMakeCache.txt [cache] Parsing CMake cache string [extension] [1947] cmake.configure finished (returned 0) [kit] OK running C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Auxiliary\Build\vcvarsall.bat amd64, env vars: undefined Platform and Versions Operating System: Windows 10 CMake Version: 3.15.4 VSCode Version: 1.40.0 CMake Tools Extension Version: 1.2.1 Compiler/Toolchain: Visual C++ 2019 Sorry, I meant to respond to this earlier, but lost track of it. YOu shouldn't need to set cmake.loggingLevel to Debug to make this work because it is controlled by a different mechanism. This works for me in 3.14, but it didn't work for me in 3.15. It could be a CMake bug, but I haven't had the time to try a lot of different configurations. CMakeLists.txt project(foo) add_executable(foo src/1.cpp) message(DEBUG "debug message") Output [cmake] DEBUGdebug message [cmake] Configuring done [cmake] Generating done Gotcha. I recently upgraded to CMake 3.15 because of some good new features/improvement in that version. So is the message type being mapped to VSCode's Output types? but it didn't work for me in 3.15. It could be a CMake bug, but I haven't had the time to try a lot of different configurations. I didn't even try this with cmake directly from the terminal. After I set up CMake Tools I've exclusively done everything from VSCode. (Great extension btw!) Add to CMakeLists.txt: # Use cmake --log-level=debug to get debug output. set( CMAKE_MESSAGE_LOG_LEVEL "STATUS" ) The latter is the default, which you can change on the command line. Can I also use cmake.configureArgs for this? I've tried with "cmake.configureArgs": [ "--log-level=DEBUG" ], And that didn't seem to yield any message(DEBUG ...) messages. "cmake.buildArgs": [ "--log-level=DEBUG" ], This will lead to an error [build] ninja: fatal: -l parameter not numeric: did you mean -l 0.0? Is there any way to control the warning level for CMake via CMakeTools that doesn't require editing CMakeList.txt files? Ah! After updating to CMake 3.16 the above worked as expected. Must be 3.15 being bugged. Why are you CC-ing me? On Mon, 23 Mar 2020 09:47:13 -0700 Thomas Thomassen notifications@github.com wrote: I've tried with "cmake.configureArgs": [ "--log-level=DEBUG" ], And that didn't seem to yield any message(DEBUG ...) messages. "cmake.buildArgs": [ "--log-level=DEBUG" ], This will lead to an error [build] ninja: fatal: -l parameter not numeric: did you mean -l 0.0? Is there any way to control the warning level for CMake via CMakeTools that doesn't require editing CMakeList.txt files? -- Carlo Wood carlo@alinoe.com I wasn't, I'm replying to the issue via GitHub. Must be the notification system from GitHub. That's great! I'll close the issue.
gharchive/issue
2019-11-09T00:08:08
2025-04-01T06:39:36.021791
{ "authors": [ "CarloWood", "bobbrow", "thomthom" ], "repo": "microsoft/vscode-cmake-tools", "url": "https://github.com/microsoft/vscode-cmake-tools/issues/892", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2684413571
Owner Copilot Chat Extension Version: VS Code Version: OS Version: Logs: Steps to Reproduce: Please elaborate
gharchive/issue
2024-11-22T20:00:37
2025-04-01T06:39:36.023914
{ "authors": [ "SWCurragh", "TylerLeonhardt" ], "repo": "microsoft/vscode-copilot-release", "url": "https://github.com/microsoft/vscode-copilot-release/issues/2788", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
620810289
Deployment issue on VSCode cosmosDB Repro steps: Action: cosmosDB.createAccount Error type: ServiceUnavailable Error Message: Long running operation failed with error: "Sorry, we are currently experiencing high demand in this region, and cannot fulfill your request at this time. We work continuously to bring more and more capacity online, and encourage you to try again shortly. Please do not hesitate to contact us via Azure support at any time or for any reason using this link http://aka.ms/azuresupport. ActivityId: 38e053a4-0790-4844-b951-565cf5f5aaf8, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0, Microsoft.Azure.Documents.Common/2.11.0,... Version: 0.12.2 OS: win32 Product: Visual Studio Code Product Version: 1.45.1 Language: en Unfortunately our extension in VS Code can't do anything if there's no availability in Azure. This could be related to high demand during the build conference, but I'm purely speculating. I recommend trying a different region, trying again later, or contact Azure support as linked in the error message above.
gharchive/issue
2020-05-19T09:08:13
2025-04-01T06:39:36.028580
{ "authors": [ "EricJizbaMSFT", "MANakib" ], "repo": "microsoft/vscode-cosmosdb", "url": "https://github.com/microsoft/vscode-cosmosdb/issues/1472", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1240535118
Add devcontainer definition for k3d kubernetes cluster (minikube alternative) Description Add a new devcontainer definition for k3d kubernetes cluster. With this, user will be able to create a new devcontainer which will enable the creation of a local kubernetes cluster (automated or manual). This PR is based off of kubernetes-helm-minikube dev container. PR Checklist [X] I have updated the documentation accordingly. [X] Added README.md describing the container [X] Added sample nginx deployment document in README.md [X] I have added/updated tests to cover my changes. [X] Changed test.sh under test-project directory [X] All new and existing tests passed. [X] My code follows the code style of this project. [X] I have checked to ensure there aren't other open Pull Requests for the same update/change. [ ] Lint checker not integrated but fixed most Markdown lint errors (followed existing container document format) Does this introduce a breaking change? [ ] Yes [X] No Testing [X] Manually created Codespaces from .devcontainer [X] Provisioned a k3d cluster from terminal [X] Automatically provisioned k3d cluster in postStartCommand [X] Manually created local devcontainer [X] Provisioned a k3d cluster from terminal afterwards [X] Automatically provisioned k3d cluster in postStartCommand [X] Manually applied pods/deployments to verify k3d cluster References Reference: https://github.com/microsoft/vscode-dev-containers/issues/1455 @iamnicoj @sivamu @juzuluag @bamurtaugh can you please clarify what this means in practice? As an end user I see a PR that's open and ready to merge. Are user-contributed devcontainer features frozen from being accepted into main? What should end users of these features do in the meantime? I would appreciate a functional alternative in the interim. Thanks again for opening this PR! As a heads up, our team has been actively focused on an updated plan for community contributions and this repo moving forward, which we've now outlined in this issue: https://github.com/microsoft/vscode-dev-containers/issues/1589. This includes moving to a couple new repos for images (https://github.com/devcontainers/images) and Features (https://github.com/devcontainers/features). We anticipate to have a similar repo and distribution process for templates/definitions. We'll keep everyone updated (likely via another issue in this repo or comment on https://github.com/microsoft/vscode-dev-containers/issues/1589) when our new templates repo is available and the process is defined. Please let me know if you have any questions, thank you!
gharchive/pull-request
2022-05-18T21:10:42
2025-04-01T06:39:36.090919
{ "authors": [ "bamurtaugh", "kforeverisback", "worldofgeese" ], "repo": "microsoft/vscode-dev-containers", "url": "https://github.com/microsoft/vscode-dev-containers/pull/1456", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1378844149
Broken test 'Import pandas and goto it:' https://github.com/microsoft/vscode-jupyter/actions/runs/3086711973/jobs/4991343761 Error: Waiting for editor to switch + expected - actual at Timeout.<anonymous> (src/test/common.ts:59:20) at listOnTimeout (node:internal/timers:559:17) at processTimers (node:internal/timers:502:7) @IanMatthewHuff looks like this test is consistently failing, will be disabling this test. No longer an issue.
gharchive/issue
2022-09-20T05:34:48
2025-04-01T06:39:36.120296
{ "authors": [ "DonJayamanne" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/11408", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1448605394
Why do we use msrCrypto? It was added here: https://github.com/microsoft/vscode-jupyter/pull/11263 The library is huge at 343KB, src/notebooks is 490KB for comparison. It also says: It is recommended that this library be used as a polyfill for the native Web Crypto API supported in modern browsers. It is strongly advised that you used the native browser crypto whenever available. It will be more thoroughly tested, more secure, and have significantly better performance. ... var crypto = window.crypto /*native*/ || window.msCrypto /*IE11 native*/ || window.msrCrypto; /*polyfill*/ This advice isn't followed, we actually recommend the opposite here? (note that msrCrypto is used regardless of which call from crypto is used. https://github.com/microsoft/vscode-jupyter/blob/2482391980596b07d958e5fe15b3b2afd684eaab/src/platform/common/crypto.ts#L10-L18 If we must use it, could we switch to fetching it via a CDN only when a polyfill is needed? Some more information in PRs or a link to issues would have been useful here, the PR doesn't address why this was introduced
gharchive/issue
2022-11-14T19:15:58
2025-04-01T06:39:36.123244
{ "authors": [ "Tyriar" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/12023", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
870323244
"Greyed out text" in the input box Testing microsoft/vscode#122243 The text in the input box for the PR title looks like it's greyed out. This mislead me for example to assume that the pre-filled in title is a placeholder and not an actual string. Interestingly, these inputs are already using var(--vscode-input-foreground) as the color which matches other inputs in VS Code. The vscode-dropdown-foreground color which the selects are using appears to be a bit different and higher contrast. @misolori do you think we should align these colors? I think this just varies by theme, for example the GH Light theme shows both text as the same colors, though it looks like the placeholder text is not using any color token? Updated the placeholder text color to use the vscode theme token for it
gharchive/issue
2021-04-28T15:32:59
2025-04-01T06:39:36.127767
{ "authors": [ "RMacfarlane", "kieferrm", "misolori" ], "repo": "microsoft/vscode-pull-request-github", "url": "https://github.com/microsoft/vscode-pull-request-github/issues/2695", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1233348529
Switching to a diff of a file with comments always open comments pane. Extension version: 0.40.0 VSCode Version: 1.66.1 (8dfae7a5cd50421d10cd99cb873990460525a898) OS: Darwin arm64 20.6.0 Steps to Reproduce: Navigate to PR w/ file-comments. Open one such file. 'Comments' tab opens up in the bottom pane. Close 'Comments' pane and navigate to different tab. Go back to file-with-comments. 'Comments' tab opens up again. It'd be nice if the Comments pane wouldn't pop up everytime I go back to the diff view or at least have an option to disable that behaviour. You can disable this with the setting comments.openView. With VS Code 1.67 this has already been changed to be less aggressive and only open on the first file with comments.
gharchive/issue
2022-05-12T01:53:21
2025-04-01T06:39:36.130752
{ "authors": [ "alexr00", "luqmana" ], "repo": "microsoft/vscode-pull-request-github", "url": "https://github.com/microsoft/vscode-pull-request-github/issues/3551", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
359648481
Add status checks to the pull request description It would great to expose PR status checks in the description. For example in Github we see +1 for this one +1 - Definitely a make or break for this extension +1 one of the key values of making a pr on GitHub's ui +1 yass With the change for https://github.com/microsoft/vscode-pull-request-github/issues/1105 now merged, all status checks should show up on the description page. This isn't released yet but will be available in the nightly version of the extension tomorrow.
gharchive/issue
2018-09-12T20:53:22
2025-04-01T06:39:36.133325
{ "authors": [ "RMacfarlane", "Skowt", "cat-turner", "glemaitre", "hemlok", "patocallaghan" ], "repo": "microsoft/vscode-pull-request-github", "url": "https://github.com/microsoft/vscode-pull-request-github/issues/457", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
606531185
Highlighting for Python Code Issue Type: Bug Theme highlighting not working when using Python extension. Python extension some times crashes and return original theme highlighting. Extension version: 2020.4.74986 VS Code version: Code 1.44.2 (ff915844119ce9485abfe8aa9076ec76b5300ddd, 2020-04-16T16:36:23.138Z) OS version: Windows_NT x64 10.0.18362 System Info Item Value CPUs Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (8 x 1992) GPU Status 2d_canvas: enabledflash_3d: enabledflash_stage3d: enabledflash_stage3d_baseline: enabledgpu_compositing: enabledmultiple_raster_threads: enabled_onoop_rasterization: disabled_offprotected_video_decode: enabledrasterization: enabledskia_renderer: disabled_off_okvideo_decode: enabledviz_display_compositor: enabled_onviz_hit_test_surface_layer: disabled_off_okwebgl: enabledwebgl2: enabled Load (avg) undefined Memory (System) 31.85GB (13.98GB free) Process Argv Screen Reader no VM 0% Are you using the Python Language server, i.e check the value of python.jediEnabled in settings As you can see I have disabled Jedi. This is in my user settings, not sure if a I understand the difference between user and workspace, in case this is can produce a issue as well. My vscode use to crash very often, that is almost unusable, and according to other github issues this was supposed to be resolved. Any help will be deeply appreciated.
gharchive/issue
2020-04-24T19:24:17
2025-04-01T06:39:36.141063
{ "authors": [ "Rcubes", "karrtikr" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/11397", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
836610710
command 'python.analysis.restartLanguageServer' already exists We need to move this command to a global location rather than inside individual language server proxy. Potentially this should be in activation service for the language server since that currently handles starting a new server. Duplicate of #13441
gharchive/issue
2021-03-20T02:41:26
2025-04-01T06:39:36.142620
{ "authors": [ "karthiknadig" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/15737", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
843490317
Jedi 2and3 builtin error Hi, Everytime I launch a file in VScode, 2 Syntaxes errors are reported from the pythonFiles\lib\jedilsp\jedi\third_party\typeshed\stdlib\2and3 builtins.pyi file : SyntaxError: non-default argument follows default argument jedi [1307, 12] (and same for line 1319) Lines 1306 and 1307 are: @overload def max(__iterable: Iterable[_T], *, key: Callable[[_T], Any] = ..., default: _VT) -> Union[_T, _VT]: ... Lines 1318 and 1319 are: @overload def min(__iterable: Iterable[_T], *, key: Callable[[_T], Any] = ..., default: _VT) -> Union[_T, _VT]: ... I have never modified this file since I am a beginner and I don't know what am I supposed to do about it. Since these errors appeared my debugger works poorly and report non-existent errors on my files. Thank you for your help! This should be filed on jedi, https://github.com/davidhalter/jedi /cc @davidhalter @amina197 your version of Python is too old for keyword-only arguments which is what that file is using. You can either upgrade your version of Python or turn off Jedi and use either Pylance or no IntelliSense. If it is a parso bug then it will be fixed in the next release of the extension for Jedi LSP and wasn't an issue in "old" Jedi as that's pinned for Python 2.7 support.
gharchive/issue
2021-03-29T15:32:15
2025-04-01T06:39:36.147975
{ "authors": [ "amina197", "brettcannon", "karthiknadig" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/15803", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
843994144
vscode-insider with Extension activation failed Environment data VS Code version: 1.55.0-insider Extension version (available under the Extensions sidebar): 2021.3.680753044 OS and version: windows 10 Enterprise 20H2 19042.867 Python version (& distribution if applicable, e.g. Anaconda): 3.9.2 [NOTE: If you suspect that your issue is related to the Microsoft Python Language Server (python.languageServer: 'Microsoft'), please download our new language server Pylance from the VS Code marketplace to see if that fixes your issue] Expected behaviour my extension can not work normally for a long time. Actual behaviour Opening a python file prints Extension activation failed, run the 'Developer: Toggle Developer Tools' command for more information. toggle developer tools, and can see errors: Conflict in settings file vscode-userdata:/c%3A/Users/yke/AppData/Roaming/Code%20-%20Insiders/User: Ignoring python.insidersChannel as python is "set PYTHONIOENCODING=utf8 && python -u"   | (anonymous) | @ | workbench.desktop.main.js:633 -- | -- | -- | --   | u | @ | workbench.desktop.main.js:633   | f | @ | workbench.desktop.main.js:633   | doParseRaw | @ | workbench.desktop.main.js:633   | parseRaw | @ | workbench.desktop.main.js:633   | parseContent | @ | workbench.desktop.main.js:633   | loadConfiguration | @ | workbench.desktop.main.js:1265   | async function (async) |   |     | loadConfiguration | @ | workbench.desktop.main.js:1265   | reload | @ | workbench.desktop.main.js:1265   | reloadLocalUserConfiguration | @ | workbench.desktop.main.js:2060   | (anonymous) | @ | workbench.desktop.main.js:2060   | requestIdleCallback (async) |   |     | e.runWhenIdle | @ | workbench.desktop.main.js:68   | (anonymous) | @ | workbench.desktop.main.js:2060   | Promise.then (async) |   |     | updateWorkspaceAndInitializeConfiguration | @ | workbench.desktop.main.js:2060   | initialize | @ | workbench.desktop.main.js:2060   | async function (async) |   |     | initialize | @ | workbench.desktop.main.js:2060   | createWorkspaceService | @ | workbench.desktop.main.js:2789   | initServices | @ | workbench.desktop.main.js:2789   | open | @ | workbench.desktop.main.js:2789   | f | @ | workbench.desktop.main.js:2798   | m.load.removeDeveloperKeybindingsAfterLoad | @ | workbench.js:32   | (anonymous) | @ | bootstrap-window.js:167   | async function (async) |   |     | (anonymous) | @ | bootstrap-window.js:162   | r._invokeFactory | @ | loader.js:1133   | r.complete | @ | loader.js:1143   | r._onModuleComplete | @ | loader.js:1769   | r._onModuleComplete | @ | loader.js:1781   | r._resolve | @ | loader.js:1729   | r.defineModule | @ | loader.js:1372   | p | @ | loader.js:1819   | _ | @ | loader.js:860   | (anonymous) | @ | workbench.desktop.main.js:2799   | (anonymous) | @ | workbench.desktop.main.js:2799   | r._createAndEvalScript | @ | loader.js:863   | (anonymous) | @ | loader.js:845   | v | @ | loader.js:964   | (anonymous) | @ | loader.js:969   | readFileAfterClose | @ | internal/fs/read_file_context.js:63 Thanks for the bug report! We investigate issues in order based on priority and severity, which includes the impact it has on your ability to use the extension to do productive work, and the number of people affected. If other users come forward and leave a comment demonstrating they are seeing/reproducing the problem then we will raise this issue's priority. If you think your issue is more of a question or configuration problem rather than a bug, please ask on Stack Overflow with the visual-studio-code and python labels for help. Thanks for your understanding and patience! Can you try clearing out the user settings? Open the settings.json file /c%3A/Users/yke/AppData/Roaming/Code%20-%20Insiders/User is referring to and delete all the settings there. in latest version, it solved.
gharchive/issue
2021-03-30T02:15:57
2025-04-01T06:39:36.154358
{ "authors": [ "karrtikr", "yanke1311" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/15808", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1182365490
Linter fails because of read-only conda environment In a remote SSH VS Code environment, pylint fails to run on save. Looking at the Python output, I see this: conda run -n team_conda2 --no-capture-output --live-stream python /physical/gpfs/colo-teamusers/colo_team_users02/data_files/team/home/team/zsilversmit h/.vscode-server/extensions/ms-python.python-2022.2.1924087327/pythonFiles/get_output_via_markers.py /physical/gpfs/colo-teamusers/colo_team_users02/dat a_files/team/home/team/zsilversmith/.vscode-server/extensions/ms-python.python-2022.2.1924087327/pythonFiles/linter.py -m pylint ./sparta/sparta/product ion/conda/full_bootstrap.py conda run -n team_conda2 --no-capture-output --live-stream python /physical/gpfs/colo-teamusers/colo_team_users02/data_files/team/home/team/zsilversmith/.v scode-server/extensions/ms-python.python-2022.2.1924087327/pythonFiles/get_output_via_markers.py /physical/gpfs/colo-teamusers/colo_team_users02/data_fi les/team/home/team/zsilversmith/.vscode-server/extensions/ms-python.python-2022.2.1924087327/pythonFiles/linter.py -m pylint ./sparta/sparta/production/conda/full_bootstrap.py # >>>>>>>>>>>>>>>>>>>>>> ERROR REPORT <<<<<<<<<<<<<<<<<<<<<< Traceback (most recent call last): File "/team/public/conda/miniconda3-team.2/lib/python3.8/site-packages/conda/exceptions.py", line 1079, in __call__ return func(*args, **kwargs) File "/team/public/conda/miniconda3-team.2/lib/python3.8/site-packages/conda/cli/main.py", line 84, in _main exit_code = do_call(args, p) File "/team/public/conda/miniconda3-team.2/lib/python3.8/site-packages/conda/cli/conda_argparse.py", line 83, in do_call return getattr(module, func_name)(args, parser) File "/team/public/conda/miniconda3-team.2/lib/python3.8/site-packages/conda/cli/main_run.py", line 25, in execute script_caller, command_args = wrap_subprocess_call(on_win, context.root_prefix, prefix, File "/team/public/conda/miniconda3-team.2/lib/python3.8/site-packages/conda/utils.py", line 403, in wrap_subprocess_call with Utf8NamedTemporaryFile(mode='w', prefix=tmp_prefix, delete=False) as fh: File "/team/public/conda/miniconda3-team.2/lib/python3.8/site-packages/conda/_vendor/auxlib/compat.py", line 81, in Utf8NamedTemporaryFile return NamedTemporaryFile(mode=mode, buffering=buffering, encoding=encoding, File "/team/public/conda/miniconda3-team.2/lib/python3.8/tempfile.py", line 541, in NamedTemporaryFile (fd, name) = _mkstemp_inner(dir, prefix, suffix, flags, output_type) File "/team/public/conda/miniconda3-team.2/lib/python3.8/tempfile.py", line 250, in _mkstemp_inner fd = _os.open(file, flags, 0o600) OSError: [Errno 30] Read-only file system: '/team/public/conda/miniconda3-team.2/envs/team_conda2/.tmpxix163cl' The way my team's software is structured, I need to use this particular read-only conda environment. Could a setting be added that specifies a writable output directory for conda run? Or could a different command be invoked that doesn't require writing into the conda environment? Issue Type: Bug Diagnostic data Python version (& distribution if applicable, e.g. Anaconda): 2.7.18 Type of virtual environment used (e.g. conda, venv, virtualenv, etc.): Conda Value of the python.languageServer setting: Pylance User Settings defaultLS: {"defaultLSType":"Pylance"} downloadLanguageServer: true envFile: "<placeholder>" venvPath: "<placeholder>" venvFolders: "<placeholder>" condaPath: "<placeholder>" pipenvPath: "<placeholder>" poetryPath: "<placeholder>" languageServer: "Pylance" linting • enabled: true • cwd: "<placeholder>" • Flake8Args: "<placeholder>" • flake8Enabled: true • flake8Path: "<placeholder>" • lintOnSave: true • banditArgs: "<placeholder>" • banditEnabled: false • banditPath: "<placeholder>" • mypyArgs: "<placeholder>" • mypyEnabled: false • mypyPath: "<placeholder>" • pycodestyleArgs: "<placeholder>" • pycodestyleEnabled: false • pycodestylePath: "<placeholder>" • prospectorArgs: "<placeholder>" • prospectorEnabled: false • prospectorPath: "<placeholder>" • pydocstyleArgs: "<placeholder>" • pydocstyleEnabled: false • pydocstylePath: "<placeholder>" • pylamaArgs: "<placeholder>" • pylamaEnabled: false • pylamaPath: "<placeholder>" • pylintArgs: "<placeholder>" • pylintPath: "<placeholder>" sortImports • args: "<placeholder>" • path: "<placeholder>" formatting • autopep8Args: "<placeholder>" • autopep8Path: "<placeholder>" • provider: "black" • blackArgs: "<placeholder>" • blackPath: "<placeholder>" • yapfArgs: "<placeholder>" • yapfPath: "<placeholder>" testing • cwd: "<placeholder>" • debugPort: 3000 • nosetestArgs: "<placeholder>" • nosetestsEnabled: undefined • nosetestPath: "<placeholder>" • promptToConfigure: true • pytestArgs: "<placeholder>" • pytestEnabled: false • pytestPath: "<placeholder>" • unittestArgs: "<placeholder>" • unittestEnabled: false • autoTestDiscoverOnSaveEnabled: true terminal • activateEnvironment: false • executeInFileDir: "<placeholder>" • launchArgs: "<placeholder>" experiments • enabled: true • optInto: [] • optOutFrom: [] insidersChannel: "off" tensorBoard • logDirectory: "<placeholder>" Extension version: 2022.2.1924087327 VS Code version: Code 1.65.2 (c722ca6c7eed3d7987c0d5c3df5c45f6b15e77d1, 2022-03-10T14:33:55.248Z) OS version: Windows_NT x64 10.0.19044 Restricted Mode: No Remote OS version: Linux x64 3.10.0-1062.9.1.el7.comp3.x86_64 Connection to 'SSH: colo-appsvr-team86' could not be established Canceled Connection to 'SSH: colo-login0007' could not be established Canceled Connection to 'SSH: team-grid-jitter' could not be established Canceled Remote OS version: Linux x64 3.10.0-1062.9.1.el7.comp3.x86_64 System Info Item Value CPUs Intel(R) Core(TM) i7-10875H CPU @ 2.30GHz (16 x 2304) GPU Status 2d_canvas: enabledgpu_compositing: enabledmultiple_raster_threads: enabled_onoop_rasterization: enabledopengl: enabled_onrasterization: enabledskia_renderer: enabled_onvideo_decode: enabledvulkan: disabled_offwebgl: enabledwebgl2: enabled Load (avg) undefined Memory (System) 31.75GB (14.17GB free) Process Argv --folder-uri vscode-remote://ssh-remote%2Bcolo-login0010/physical/gpfs/colo-teamusers/colo_team_users02/data_files/team/home/team/zsilversmith/dev/git/eis5 --crash-reporter-id 745587e8-1a3a-48d7-afc4-0a837a16dc7e Screen Reader no VM 0% Item Value Remote SSH: colo-login0010 OS Linux x64 3.10.0-1062.9.1.el7.comp3.x86_64 CPUs Intel(R) Xeon(R) Gold 6150 CPU @ 2.70GHz (36 x 3399) Memory (System) 754.19GB (170.09GB free) VM 0% Connection to 'SSH: colo-appsvr-team86' could not be established Canceled Connection to 'SSH: colo-login0007' could not be established Canceled Connection to 'SSH: team-grid-jitang' could not be established Canceled Item Value Remote SSH: colo-login0009 OS Linux x64 3.10.0-1062.9.1.el7.comp3.x86_64 CPUs Intel(R) Xeon(R) Gold 6150 CPU @ 2.70GHz (36 x 3399) Memory (System) 754.19GB (69.96GB free) VM 0% A/B Experiments vsliv368cf:30146710 vsreu685:30147344 python383cf:30185419 vspor879:30202332 vspor708:30202333 vspor363:30204092 pythonvspyl392:30443607 pythontb:30283811 pythonptprofiler:30281270 vsdfh931:30280409 vshan820:30294714 vstes263:30335439 pythondataviewer:30285071 vscod805cf:30301675 pythonvspyt200:30340761 binariesv615:30325510 bridge0708:30335490 bridge0723:30353136 vsaa593cf:30376535 vsc1dst:30438360 pythonvs932:30410667 wslgetstarted:30449410 vsclayoutctrt:30451275 dsvsc009:30452663 pythonvsnew555:30457759 vscscmwlcmt:30438805 vscgsvid2:30447481 pynewfile477:30450038 Looks like this is caused by conda attempting to write temporary files in read-only filesystems (conda issue). Is there a way to run this by doing conda activate <selected_environment>; pylint or something along those lines to avoid calling conda run? Please update to the latest version of conda, https://github.com/conda/conda/pull/11215 . It should have fixed in it.
gharchive/issue
2022-03-27T05:55:55
2025-04-01T06:39:36.172872
{ "authors": [ "karthiknadig", "zbs" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/18790", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
406593773
Test Discovery: Unittest framework only detects test in current directory Unittest framework only detects test in current directory, does not recursively detect tests in subdirectories. Hello! I have reviewed this issue and given the architectural changes of the testing rewrite, this issue should no longer exist on the rewrite. Therefore I am going to close this issue but please comment or open a new issue if you are still seeing a problem when you try this yourself! To use the rewrite yourself just add ”python.experiments.optInto": ["pythonTestAdapter"] to your user settings. You can confirm you have the rewrite enabled by setting your log level to trace, via the Developer: Set Log Level command in the command palette. Then check to see if Experiment 'pythonTestAdapter' is active is in your python logs. Thanks!
gharchive/issue
2019-02-05T01:28:26
2025-04-01T06:39:36.175631
{ "authors": [ "eleanorjboyd", "karrtikr" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/4270", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
448864935
Debug console cannot line feed Issue Type: Feature Request When I debug a python program, I wish arrays are in alignment. But the debug console dosen't line feed though there is a '\n' in the end of the array. Generally, the output of the debug console should be on every 5 elements in a row, and now, they are crowded together. see: Extension version: 2019.4.12954 VS Code version: Code 1.34.0 (a622c65b2c713c890fcf4fbf07cf34049d5fe758, 2019-05-15T21:59:37.030Z) OS version: Windows_NT x64 10.0.17134 Issue moved to microsoft/ptvsd #1471 via ZenHub
gharchive/issue
2019-05-27T13:43:29
2025-04-01T06:39:36.178906
{ "authors": [ "DindoW", "DonJayamanne" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/5797", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
616244946
Fix run by line to scroll to the current location when stepping Fix install message to reference run by line For #11662, #11661 Fix run by line to set the cursor inside the cell and focus the cell. Also fixed up the install directions so that they don't reference debugging. Codecov Report :exclamation: No coverage uploaded for pull request base (master@aa60924). Click here to learn what that means. The diff coverage is 100.00%. @@ Coverage Diff @@ ## master #11754 +/- ## ========================================= Coverage ? 60.62% ========================================= Files ? 628 Lines ? 33935 Branches ? 4780 ========================================= Hits ? 20572 Misses ? 12365 Partials ? 998 Impacted Files Coverage Δ src/client/common/utils/localize.ts 95.56% <100.00%> (ø) src/client/common/application/terminalManager.ts 33.33% <0.00%> (ø) src/client/activation/common/downloader.ts 67.32% <0.00%> (ø) src/client/activation/node/languageServerProxy.ts 27.94% <0.00%> (ø) src/client/formatters/types.ts 100.00% <0.00%> (ø) src/client/common/utils/version.ts 77.77% <0.00%> (ø) src/client/workspaceSymbols/main.ts 69.87% <0.00%> (ø) src/client/testing/display/main.ts 85.60% <0.00%> (ø) src/client/common/application/types.ts 100.00% <0.00%> (ø) src/client/logging/logger.ts 75.67% <0.00%> (ø) ... and 619 more Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update aa60924...b7d2696. Read the comment docs.
gharchive/pull-request
2020-05-11T23:08:10
2025-04-01T06:39:36.192785
{ "authors": [ "codecov-io", "rchiodo" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/pull/11754", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
694582014
Disable flaky file system tests For #10294 Disabling this entire suite. If we are comparing time, we should probably use a fuzzy comparison. For now disabling this. Codecov Report Merging #13817 into main will decrease coverage by 0.02%. The diff coverage is n/a. @@ Coverage Diff @@ ## main #13817 +/- ## ========================================== - Coverage 59.93% 59.91% -0.03% ========================================== Files 684 684 Lines 37962 37962 Branches 5466 5466 ========================================== - Hits 22753 22744 -9 + Misses 14048 14040 -8 - Partials 1161 1178 +17 Impacted Files Coverage Δ src/client/datascience/crossProcessLock.ts 79.41% <0.00%> (-11.77%) :arrow_down: src/client/common/utils/platform.ts 56.00% <0.00%> (-8.00%) :arrow_down: src/client/linters/pydocstyle.ts 86.66% <0.00%> (-2.23%) :arrow_down: src/client/datascience/debugLocationTracker.ts 76.56% <0.00%> (-1.57%) :arrow_down: src/client/common/process/proc.ts 14.49% <0.00%> (-0.73%) :arrow_down: src/client/logging/levels.ts 61.11% <0.00%> (ø) src/client/logging/logger.ts 62.74% <0.00%> (ø) src/client/logging/formatters.ts 53.57% <0.00%> (ø) src/client/logging/transports.ts 65.11% <0.00%> (ø) Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 24d1bc1...eb104b5. Read the comment docs.
gharchive/pull-request
2020-09-07T00:10:56
2025-04-01T06:39:36.206151
{ "authors": [ "codecov-commenter", "karthiknadig" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/pull/13817", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
716769925
Update release workflow to run tests in extension folder with spaces in path For #14168 [x] Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR). [x] Title summarizes what is changing. [ ] Has a news entry file (remember to thank yourself!). [ ] Appropriate comments and documentation strings in the code. [ ] Has sufficient logging. [ ] Has telemetry for enhancements. [ ] Unit tests & system/integration tests are added/updated. [ ] Test plan is updated as appropriate. [ ] package-lock.json has been regenerated by running npm install (if dependencies have changed). [ ] The wiki is updated with any design decisions/details. something went wrong lol
gharchive/pull-request
2020-10-07T18:48:50
2025-04-01T06:39:36.210735
{ "authors": [ "kimadeline" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/pull/14304", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
671879849
Azure DevOps - test improvements [ ] Adopt a multi-stage pipeline for better visibility into dependencies [ ] Review all test suites and ensure that they emit XML test results [ ] Add pipeline task to publish the test results NSS.cybersec.microsoft.com G Hubspot.ncis.host Info.subscriber.report.net Workflows.sysAutorun.IT6.1 BuildCyberSecurity.bat Norton365.axio.net Link.observe.solutions.deploy/Global-Axiom Omni.brand.cybercommand.ntr oP.github.hubspot.net Unity.project.net Repo.tv.net Globalsolution.cyber.us
gharchive/issue
2020-08-03T07:53:52
2025-04-01T06:39:36.271996
{ "authors": [ "JDWilson1980", "lszomoru" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/103814", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
682269937
Wierd CSS properties sugestions Issue Type: Bug Started working with css and found that VScode (insiders) gives me some wild suggestions for the properties, eg. need "font-size: ;", first sugestion is "font-size-adjust: ;", need "line-height: ;" first suggestion is "line-height-step: ;". Can you please fix this, thanks. VS Code version: Code - Insiders 1.49.0-insider (bd08768fd310d34cdd4423a53e5f3ca77340fea5, 2020-08-14T05:56:40.601Z) OS version: Windows_NT x64 10.0.20190 System Info Item Value CPUs Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz (16 x 3600) GPU Status 2d_canvas: enabledflash_3d: enabledflash_stage3d: enabledflash_stage3d_baseline: enabledgpu_compositing: enabledmultiple_raster_threads: enabled_onoop_rasterization: disabled_offopengl: enabled_onprotected_video_decode: unavailable_offrasterization: enabledskia_renderer: disabled_off_okvideo_decode: enabledvulkan: disabled_offwebgl: enabledwebgl2: enabled Load (avg) undefined Memory (System) 23.87GB (8.47GB free) Process Argv O:\OneDrive\USER PROFILE\Desktop\Projects\Xanda Cutups\winnerlot-competitions --crash-reporter-id 195724cf-b023-494f-bd5b-8d48f67ba7b9 Screen Reader no VM 0% Extensions (7) Extension Author (truncated) Version php-intellisense fel 2.3.14 html-slim-scss-css-class-completion gen 1.7.5 phpcs ika 1.0.5 sftp lix 1.12.9 remote-wsl ms- 0.44.4 vscode-scss-formatter sib 2.0.1 code-spell-checker str 1.9.0 我草 change: https://github.com/microsoft/vscode-css-languageservice/commit/5b588f21fbd69051b6a18e7e44997480721f9d9b This still seems to be a problem. I see this was part of the August milestone. Will it be released sometime this month? The August release has just been released (1.49). If you still see a problem, please file a new issue with a small code sample and a description of what you see and what you expect.
gharchive/issue
2020-08-20T00:45:22
2025-04-01T06:39:36.282842
{ "authors": [ "AleksandrHovhannisyan", "GreatRequest", "aeschli", "xuchenrui-z" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/105039", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
701508797
Moving mouse over long lines in Javascript files uses 100% CPU for several seconds, and freezes Version: 1.50.0-insider Commit: cca20eba8974b1d6b6a9b71bf4e60a29c8f26648 Date: 2020-09-12T00:58:03.476Z Electron: 9.3.0 Chrome: 83.0.4103.122 Node.js: 12.14.1 V8: 8.3.110.13-electron.0 OS: Linux x64 5.4.0-47-generic snap (reproduces on a friend's Windows 10 version as well) This started happening on the main version of vscode ~3 days ago. Sample: Needs to be renamed to .js foo.txt Steps to Reproduce: Open a file with one long line. The file needs to have the JS extension (sample attached, but needs to have its extension changed to .js, as Github doesn't allow .js to be attached). Click one spot in the file, and try to highlight a section. Does this issue occur when all extensions are disabled?: Yes Very interestingly, I don't see slowness in tokenizing the line, but there is significant slowness caused by hit testing to discover the mouse position: I cannot reproduce if I execute with --disable-features=LayoutNG. fyi @deepak1556 Here is a repro page -- clicking and selecting the text in Firefox & Safari is fast, while it is slow in Chromium -- https://jsfiddle.net/eahj49d8/ I have created https://bugs.chromium.org/p/chromium/issues/detail?id=1128937 Awesome, thanks @alexdima Upstream changes are available in latest insiders, closing for another round of verification. @deepak1556 I'm not sure what level of performance we're looking for here. On my mac it is super sluggish selecting and clicking the mouse to different sections of the line still freezes the editor I see this Same stack, much faster than the original example but still slow. Is there anything else to be done or is that just as good as the browser can get? Firefox can do it quicker (about 20ms): Oh yeah, this is nowhere near what it was. I've downloaded VS Code 1.48 (one version before updating to Electron 9) and profiled moving the mouse: @deepak1556 Do you have any suggestion with what to do here? The upstream issue got fixed, but the perf issue remains, the caretRangeFromPoint call is still 100x slower for the same underlying HTML.
gharchive/issue
2020-09-15T00:05:47
2025-04-01T06:39:36.292129
{ "authors": [ "WilliamParks", "alexdima", "deepak1556", "lramos15", "roblourens" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/106699", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
724275936
Allow to run single C# file easily similar to Python as csc.exe test.cs It is very difficult to debug a single C# file in VS Code (without a visual studio project or solution) similar to Python. This feature is very helpful for students and interview preparations to run a single CS file in the terminal under the VS Code. Feature: Open a folder in the VS Code which containing many C# files each containing the Main() function and after I open one of the C# files and click the Run/Debug button it will execute the code and show me the result in the terminal. This feature will make the C# popular among students and professionals preparing for interviews. Currently, I worked on C# projects/solutions at work but during my interview preparation, I use python to make my preparation faster. or use online compiler on coderpad or leetcode to compile the C# code. /extCsharp
gharchive/issue
2020-10-19T05:31:23
2025-04-01T06:39:36.294465
{ "authors": [ "connor4312", "harshlavingia" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/108915", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
748959187
Reopen Editor with breaks --wait behavior Because Reopen Editor with seems to close the current document, and re-open it again in with the new editor, this break the --wait behavior. IMO, switching editors, shouldn't cause the document to be closed/opened nor break --wait FYI, this causes issues for the new GitLens rebase editor, as it relies on the --wait behavior. /cc @bpasero For more weird --wait cases. This is because internally a replace is just an open -> close which triggers the wait When we detect --wait we install a listener to observe editors closing, e.g. here: https://github.com/microsoft/vscode/blob/a14600c325fe43a34d57a42695cf1bb6708d2892/src/vs/workbench/electron-sandbox/window.ts#L665-L665 To then delete a wait marker file which the calling side polls on for deletion before returning: https://github.com/microsoft/vscode/blob/a14600c325fe43a34d57a42695cf1bb6708d2892/src/vs/workbench/electron-sandbox/window.ts#L668-L668 The code for observing editors closing probably needs to be made more clever around the fact that editors can reopen: https://github.com/microsoft/vscode/blob/eebf8e876ab99688b167b98874ca2b3c17822e4f/src/vs/workbench/browser/editor.ts#L174-L174 Currently we just listen to onDidCloseEditor which will fire even for the reopen case. Some ideas: enrich the IEditorCloseEvent to carry a boolean that can be used to figure out if the editor was closed because it was reopened instead of reacting to the close event directly, add some debouncing to give the reopen a chance to bring up the new editor Not a big fan of the debouncing because that solution sounds fragile to me. A property would make more sense to me. Note that we already have a replaced property on IEditorCloseEvent which maybe is a bit misleading: it does not tell whether the editor was replaced from a replaceEditors call, but rather indicates that the editor was in preview mode and got replaced because another editor was opened. Maybe the property could still be reused though. Given my recent change in this area, if we were to enrich EditorCloseContext with another context for the reopen, we can easily fix this: https://github.com/microsoft/vscode/blob/cc4ace196cf5482f801b2ac06128bace2906f874/src/vs/workbench/common/editor.ts#L736-L736 Given my recent change in this area, if we were to enrich EditorCloseContext with another context for the reopen, we can easily fix this: https://github.com/microsoft/vscode/blob/cc4ace196cf5482f801b2ac06128bace2906f874/src/vs/workbench/common/editor.ts#L736-L736 This sounds like a good solution Tested this and it seems the REPLACE closed context is passed in the wait works properly.
gharchive/issue
2020-11-23T16:44:14
2025-04-01T06:39:36.302882
{ "authors": [ "bpasero", "eamodio", "lramos15" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/111187", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
817539161
Bad debugger suggestions for pwa-node I tried debugging the node sample app in Dev Containers without having js-debug activated and the following message showed up: However, when I click on the leftmost button to install extensions, I get the following query (tag:debuggers @sort:installs) and suggestions, none of them having to do with js or node debugging: Searching just 'pwa' helped me realize that I forgot to activate js-debug, and searching 'pwa-node' yielded no results. This suggestion should not generally be relevant since js-debug is built-in, and built-in extensions do not show in results. @rzhao271 do you use the js-debug nightly? I've seen this sometimes where js-debug is not installed in remotes, but I assumed this was because I use the nightly extension and have the built-in one disabled. @connor4312 I don't remember the exact state I was in, but I had the nightly version installed by that point. It was likely that I had both the nightly and stable versions disabled by accident, though I still felt confused by the results under tag: debuggers sort:@installs. I'm wondering if there's any way to add an OR into that query so that it can also list relevant disabled installed extensions? It will usually list installed extensions (e.g. it shows the Debugger for Chrome in your screenshot), but not built-in extensions. Giving to Sandeep who owns this but not sure it's worth fixing just for people using js-debug nightly. Query to market place shows all result extensions in Marketplace - we do not filter built in extensions if they are also available in Marketplace. For eg., searching for pwa shows both stable (which is builtin) and nightly js debugger extensions It seems the query tag:debuggers @sort:installs is also showing both those extensions but they are not shown on the top but somewhere in the middle due to sorting criteria @connor4312 Moving this back to you if you would like to change the filter to get expected results Ideally we could have metadata for packages in the marketplace to show the run with the right debug type... but this is not currently possible.
gharchive/issue
2021-02-26T17:34:53
2025-04-01T06:39:36.308544
{ "authors": [ "connor4312", "rzhao271", "sandy081" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/117779", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
840025391
Git Issue Type: Feature Request VS code ne trouve pas le dossier Git, car il est installé dans mon autre disque dur. Je ne sais pas comment sélectionner le dossier où chercher. Merci VS Code version: Code 1.54.3 (2b9aebd5354a3629c3aba0a5f5df49f43d6689f8, 2021-03-15T10:55:45.459Z) OS version: Windows_NT x64 10.0.10240 Translate to english: VS code can't find the Git folder because it's installed in my other hard drive. I don't know how to select the folder to search. Thank you Would setting the PATH ENV variable help? You can either add git to your path or set the git.path setting to the location of the git executable
gharchive/issue
2021-03-24T18:21:09
2025-04-01T06:39:36.311626
{ "authors": [ "20anas11", "eamodio", "justinemojal", "trileminh94" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/119814", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
848840208
Marketplace Extension Manifest - SemVer not actually supported Sorry if this isn't the correct place to bring this issue up. Site ref: https://code.visualstudio.com/api/references/extension-manifest#fields Github doc: https://github.com/microsoft/vscode-docs/blob/a641ec03073b116b12b9f5fcee95c024a79c6899/api/references/extension-manifest.md It states under version that it's SemVer compatible. However, if I suffix a version with -rc.1 - which SemVer document, and have even used themselves (figure 1) - I get an error (figure 2) Table row copied from the page Name Required Type Details version Y string SemVer compatible version. (figure 1 - SemVer's own version of release candidate) (figure 2 - Error displayed saying that only #.#.#.# is allowed) I think this is a constraint of Marketplace, so probably belongs at https://github.com/microsoft/vsmarketplace Do I need to create it over there or can it be moved? A new development, initially reported here So, as well as this issue I have reported here - which I will report at the suggested link, there's also a new issue with VS Code Issue with VS Code My extension isn't installing or is being automatically uninstalled, there's no errors in the code as a drag & drop of a .vsix file works Steps to replicate: (brief) Package the extension with version 5.0.0 (preview) Upload it Make changes Package with the same version Upload it No one can install the extension or it automatically get uninstalled Steps: (full breakdown) Package the extension with version 5.0.0-rc.1 (preview) Create a release on GitHub and add the package to it Try to upload & get this error - only #.#.# is allowed Package again, this time with version 5.0.0 (preview) Upload this to the marketplace (upload successful) Make changes Package the extension with version 5.0.0-rc.2 (preview) Create a release on GitHub and add the package to it Package again - as I know it won't work - again with version 5.0.0 (preview) Upload this to the marketplace (upload successful) No one can install the extension or it automatically get uninstalled It has to be supported by Marketplace, so assigning to @mjbvz ( I could not simply transfer it )
gharchive/issue
2021-04-01T22:35:08
2025-04-01T06:39:36.322422
{ "authors": [ "gjsjohnmurray", "glenn2223", "sandy081" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/120389", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
868838482
Polish UI for @trustRequired filter Testing #122230 open the extensions viewlet and filter by @trustRequired there are two groups but the headers are rather cryptic I suggest to insert some kind of message atop of each group that explains what this means /cc @misolori /cc @sandy081 as well I wonder if this should apply to all of our cases where we do this splitting (WSL, Codespaces, Containers, etc.) because they all can fall under that same rule as well: I wonder if this should apply to all of our cases where we do this splitting +💯 It is so hard to convey the meaning of these bucket through titles only Totally agree to have more info for views - Have you thought about providing this info using our custom hovers?
gharchive/issue
2021-04-27T13:16:34
2025-04-01T06:39:36.325845
{ "authors": [ "jrieken", "misolori", "sandy081", "sbatten" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/122335", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
987156362
Horizontal scroll bar only works at the end of the Jupyter feed Environment data VS Code version: 1.59.1 Jupyter Extension version (available under the Extensions sidebar): v2021.8.1236758218 Python Extension version (available under the Extensions sidebar): v2021.8.1236758218 OS (Windows | Mac | Linux distro) and version: Windows 10 Pro - 20H2 Python and/or Anaconda version: 3.9.5 64-bit Type of virtual environment used (N/A | venv | virtualenv | conda | ...): N/A Jupyter server running: Local Expected behaviour When I am viewing a large dataframe output, I expect the horizontal scroll bar to be visible and work when I scroll up to view the headers of the dataframe print. The horizontal scrollbar should be available anytime the feed is showing a table or output that is wider than the visible feed. Actual behaviour I have to scroll to the bottom of the -correction: dataframe - to make the horizontal scroll bar visible, move the bar, then scroll back up to see the column headers. Steps to reproduce: [NOTE: Self-contained, minimal reproducing code samples are extremely helpful and will expedite addressing your issue] df = Dataframe() load df with 15 columns and 36 rows of data (with long enough column names that it goes off the screen to the right) print(df) Logs Output for Jupyter in the Output panel (View→Output, change the drop-down the upper-right of the Output panel to Jupyter) XXX This is related to the other issue we have about being able to control how much of a dataframe (HTML) is displayed at a time. The horizontal scrollbar should now be always visible
gharchive/issue
2021-08-31T12:57:15
2025-04-01T06:39:36.332995
{ "authors": [ "greazer", "rebornix", "turbonate" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/132166", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
997255249
Latex stdout is not converted to latex (was: Julia help text rendered poorly) How are you mainly using the Jupyter extension? [X] Notebooks (.ipynb) [ ] Interactive Window and or Cell Scripts (ex. .py files with #%%) [ ] Both What happened? I wrote ?rand (for example) in a Julia notebook cell and executed the cell. The output of the cell was very difficult to read, as it appears to be unrendered LaTeX with strange coloring: \begin{verbatim} rand([rng=GLOBAL_RNG], [S], [dims...]) \end{verbatim} Pick a random element or array of random elements from the set of values specified by \texttt{S}; \texttt{S} can be \begin{itemize} \item an indexable collection (for example \texttt{1:9} or \texttt{('x', "y", :z)}), What flavor of VS Code are you using? Stable Jupyter Extension Version v2021.8.2041215044 Jupyter logs \begin{verbatim} rand([rng=GLOBAL_RNG], [S], [dims...]) \end{verbatim} Pick a random element or array of random elements from the set of values specified by \texttt{S}; \texttt{S} can be \begin{itemize} \item an indexable collection (for example \texttt{1:9} or \texttt{('x', "y", :z)}), \item an \texttt{AbstractDict} or \texttt{AbstractSet} object, \item a string (considered as a collection of characters), or \item a type: the set of values to pick from is then equivalent to \texttt{typemin(S):typemax(S)} for integers (this is not applicable to \href{@ref}{\texttt{BigInt}}), to $[0, 1)$ for floating point numbers and to $[0, 1)+i[0, 1)$ for complex floating point numbers; \end{itemize} \texttt{S} defaults to \href{@ref}{\texttt{Float64}}. When only one argument is passed besides the optional \texttt{rng} and is a \texttt{Tuple}, it is interpreted as a collection of values (\texttt{S}) and not as \texttt{dims}. \begin{quote} \textbf{compat} Julia 1.1 Support for \texttt{S} as a tuple requires at least Julia 1.1. \end{quote} \section{Examples} \begin{verbatim} julia> rand(Int, 2) 2-element Array{Int64,1}: 1339893410598768192 1575814717733606317 julia> using Random julia> rand(MersenneTwister(0), Dict(1=>2, 3=>4)) 1=>2 julia> rand((2, 3)) 3 julia> rand(Float64, (2, 3)) 2×3 Array{Float64,2}: 0.999717 0.0143835 0.540787 0.696556 0.783855 0.938235 \end{verbatim} \begin{quote} \textbf{note} Note The complexity of \texttt{rand(rng, s::Union\{AbstractDict,AbstractSet\})} is linear in the length of \texttt{s}, unless an optimized method with constant complexity is available, which is the case for \texttt{Dict}, \texttt{Set} and \texttt{BitSet}. For more than a few calls, use \texttt{rand(rng, collect(s))} instead, or either \texttt{rand(rng, Dict(s))} or \texttt{rand(rng, Set(s))} as appropriate. \end{quote} \rule{\textwidth}{1pt} \begin{verbatim} rand([rng::AbstractRNG,] s::Sampleable) \end{verbatim} Generate one sample for \texttt{s}. \begin{verbatim} rand([rng::AbstractRNG,] s::Sampleable, n::Int) \end{verbatim} Generate \texttt{n} samples from \texttt{s}. The form of the returned object depends on the variate form of \texttt{s}: \begin{itemize} \item When \texttt{s} is univariate, it returns a vector of length \texttt{n}. \item When \texttt{s} is multivariate, it returns a matrix with \texttt{n} columns. \item When \texttt{s} is matrix-variate, it returns an array, where each element is a sample matrix. rand([rng::AbstractRNG,] s::Sampleable, dim1::Int, dim2::Int...) rand([rng::AbstractRNG,] s::Sampleable, dims::Dims) \end{itemize} Generate an array of samples from \texttt{s} whose shape is determined by the given dimensions. \rule{\textwidth}{1pt} \begin{verbatim} rand(rng::AbstractRNG, d::UnivariateDistribution) \end{verbatim} Generate a scalar sample from \texttt{d}. The general fallback is \texttt{quantile(d, rand())}. \rule{\textwidth}{1pt} \begin{verbatim} rand(rng, d) \end{verbatim} Extract a sample from the p-Generalized Gaussian distribution 'd'. The sampling procedure is implemented from from [1]. [1] Gonzalez-Farias, G., Molina, J. A. D., \& Rodríguez-Dagnino, R. M. (2009). Efficiency of the approximated shape parameter estimator in the generalized Gaussian distribution. IEEE Transactions on Vehicular Technology, 58(8), 4214-4223. \rule{\textwidth}{1pt} \begin{verbatim} rand(::AbstractRNG, ::Distributions.AbstractMvNormal) \end{verbatim} Sample a random vector from the provided multi-variate normal distribution. \rule{\textwidth}{1pt} \begin{verbatim} rand(::AbstractRNG, ::Sampleable) \end{verbatim} Samples from the sampler and returns the result. \rule{\textwidth}{1pt} \begin{verbatim} rand(d::Union{UnivariateMixture, MultivariateMixture}) \end{verbatim} Draw a sample from the mixture model \texttt{d}. \begin{verbatim} rand(d::Union{UnivariateMixture, MultivariateMixture}, n) \end{verbatim} Draw \texttt{n} samples from \texttt{d}. What coding language are you working with? Julia VS Code Version? 1.60.1 Python Extension Version No response Python Version No response Anaconda Version No response What OS are you running on? Mac Running Jupyter locally or remotely? Local Code of Conduct [X] I agree to follow this project's Code of Conduct @rchiodo this is actually a duplicate of https://github.com/microsoft/vscode-jupyter/issues/6802 We need to discuss whether we should support latex in regular outputs or not (ipywidgets, plain html output, stdout, etc) We need to discuss whether we should support latex in regular outputs or not In the case of Julia, the ability to look up documentation with ? is quite fundamental, so I'm a big +1 for LaTeX support. That said, the use of LaTeX in Julia's docs is primarily for document structure and formatting, so another solution upstream might be to convert their LaTeX to Markdown on the client... @DonJayamanne Should we close this as an upstream issue? Ah it appears https://github.com/microsoft/vscode-jupyter/issues/6529 is a precise duplicate of this issue as well. This is something that Jupyter supports so it should be supported in VS code (otherwise people can't open notebooks generated with Jupyter). I'm closing this as an upstream issue based on my understanding of it. Rendering of output is left up to output renderers; we don't parse the output looking for latex but a renderer could @mjbvz shouldn't the core support text/latex as an output type though? We had discussing submitting a PR to core to make so that markdown-it could actually render these latex outputs. They can also be embedded in regular markdown, so it seems to make sense to support them in the core itself. Latex output was #123144 (which should be reopened since it was since reverted) If there's something else you think VS Code itself should handle, please open an issue that explains the problem independently of Jupyter directly @mjbvz sorry I was incorrect. This issue here is about latex outputs in stdout or text/html. For example the julia kernel generates latex in their stdout.
gharchive/issue
2021-09-15T12:38:53
2025-04-01T06:39:36.344717
{ "authors": [ "DonJayamanne", "hammer", "mjbvz", "rchiodo" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/133172", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1026893835
Inspect tokens and scopes doesn't work in notebooks Issue Type: Bug Open a notebook Create a code cell Focus on the code cell and try running Developer: Inspect tokens and scopes Bug Nothing happens VS Code version: Code - Insiders 1.62.0-insider (Universal) (cad4c193d85f0891204da41c0508de39e7aa38c6, 2021-10-14T05:15:07.179Z) OS version: Darwin x64 20.6.0 Restricted Mode: No System Info Item Value CPUs Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400) GPU Status 2d_canvas: enabledgpu_compositing: enabledmetal: disabled_offmultiple_raster_threads: enabled_onoop_rasterization: enabledopengl: enabled_onrasterization: enabledskia_renderer: disabled_off_okvideo_decode: enabledwebgl: enabledwebgl2: enabled Load (avg) 4, 4, 3 Memory (System) 32.00GB (0.08GB free) Process Argv --crash-reporter-id 48781ca2-1705-4f64-9bab-325055aab55d Screen Reader no VM 0% The feature got disabled by #123610
gharchive/issue
2021-10-14T22:56:01
2025-04-01T06:39:36.351924
{ "authors": [ "aeschli", "mjbvz" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/135128", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1048386618
Extension issue Issue Type: Bug Extension Name: html-language-features Extension Version: 1.0.0 OS Version: Windows_NT x64 10.0.19042 VS Code version: 1.62.0 :warning: We have written the needed data into your clipboard. Please paste! :warning: /needsMoreInfo
gharchive/issue
2021-11-09T09:37:53
2025-04-01T06:39:36.354243
{ "authors": [ "IllusionMH", "kundan1908" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/136736", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1140441358
unable to load static files We have written the needed data into your clipboard because it was too large to send. Please paste . /needsMoreInfo Please specify how exactly this is related to VS Code editor itself? If you are using some extension to provide live server - issue should be reported in extension's repo.
gharchive/issue
2022-02-16T19:03:52
2025-04-01T06:39:36.355878
{ "authors": [ "IllusionMH", "amrendra22" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/143231", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1142733967
Typescript services Issue Type: Bug Go to definition and typescript not working VS Code version: Code - Insiders 1.65.0-insider (86200d542474b26aa28034e0fd5789c45c747d8b, 2022-02-17T07:18:54.447Z) OS version: Windows_NT x64 10.0.22000 Restricted Mode: No System Info Item Value CPUs Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (8 x 1992) GPU Status 2d_canvas: enabledcanvas_oop_rasterization: disabled_offgpu_compositing: enabledmultiple_raster_threads: enabled_onoop_rasterization: enabledopengl: enabled_onrasterization: enabledraw_draw: disabled_off_okskia_renderer: enabled_onvideo_decode: enabledvulkan: disabled_offwebgl: enabledwebgl2: enabled Load (avg) undefined Memory (System) 15.84GB (2.52GB free) Process Argv --crash-reporter-id 67531790-25d3-412e-ad3e-9c332f3f778f Screen Reader no VM 29% Extensions (29) Extension Author (truncated) Version to ami 0.0.10 vscode-intelephense-client bme 1.8.1 path-intellisense chr 2.8.0 vscode-svgviewer css 2.0.0 docs-yaml doc 0.2.7 githistory don 0.6.19 es7-react-js-snippets dsz 4.4.0 gitlens eam 11.7.0 vscode-great-icons emm 2.1.82 prettier-vscode esb 9.2.0 copilot Git 1.7.5067 json2ts Gre 0.0.6 todo-tree Gru 0.0.215 selected-lines-count gur 1.4.0 javascript-snippets jab 4.0.1 batch-rename-extension Jan 0.0.4 vscode-peacock joh 4.0.0 sftp lix 1.12.10 debugger-for-edge msj 1.0.15 vscode-graphql ors 0.3.18 material-icon-theme PKi 4.13.0 vscode-react-refactor pla 1.1.3 vscode-yaml red 1.4.0 vscode-fileutils sle 3.5.0 laravel-goto-controller ste 0.0.15 code-spell-checker str 2.1.7 quokka-vscode Wal 1.0.448 php-debug xde 1.24.0 vscode-surround yat 1.2.2 (3 theme extensions excluded) A/B Experiments vsliv695:30137379 vsins829:30139715 vsliv368:30146709 vsreu685:30147344 python383:30185418 vspor879:30202332 vspor708:30202333 vspor363:30204092 pythonvspyl392:30422396 pythontb:30258533 pythonptprofiler:30281269 vshan820:30294714 pythondataviewer:30285072 vscod805:30301674 pythonvspyt200:30323110 bridge0708:30335490 bridge0723:30353136 vsaa593:30376534 testflightcf:30433671 pythonvs932:30404738 wslgetstarted:30421357 vsclayoutctrt:30405800 vscop841:30438915 dsvsc009:30436273 pythonvspyt640:30438691 vsbas813:30436447 vscscmwlcmt:30428973 azactmsal:30432848 vscgsvid2:30433758 dockersurvey3:30438168 /needsMoreInfo Do you see any errors? Is it reproducible with all extensions disabled? You can try this with F1 and >Developer: Reload Window With Extensions Disabled Is it reproducible in stable version? Also more info about workspace and project config will be helpful or shared repo if it's public. Are you using built-in TS version or workspace one? This might mean that 4.6 RC has some issue that might reach next stable. Please follow steps described in https://github.com/microsoft/vscode/issues/143140#issuecomment-1040904820 and this will help to provide info required to resolve problem. Please pay attention at the end of the comment about paths etc.
gharchive/issue
2022-02-18T09:42:19
2025-04-01T06:39:36.375695
{ "authors": [ "IllusionMH", "rogerms" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/143359", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1158217489
Allow double click on tab to return layout to original Issue Type: Bug If you have a split screen you can vary the width of the split. One behaviour was that you could double click a tab and it would occupy most of the window and then double click again to return it to its previous size and layout. The second double click now resets the layout of all splits to some sort of middle. It used to be very useful if you had many files but only generally wanted to be able to see a little bit of them in reference (like the bootstrap css breakpoints) but then occasionally enlarge that file to look at other parts of it. Or just flick between file tabs and keep them large. This is very useful on screens smaller than enormous. I have removed all extensions and it appears to be the same without extensions. VS Code version: Code 1.64.2 (Universal) (f80445acd5a3dadef24aa209168452a3d97cc326, 2022-02-09T22:00:58.347Z) OS version: Darwin x64 20.6.0 Restricted Mode: No System Info Item Value CPUs Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz (8 x 2800) GPU Status 2d_canvas: enabledgpu_compositing: enabledmetal: disabled_offmultiple_raster_threads: enabled_onoop_rasterization: enabledopengl: enabled_onrasterization: enabledskia_renderer: disabled_off_okvideo_decode: enabledwebgl: enabledwebgl2: enabled Load (avg) 2, 2, 3 Memory (System) 16.00GB (0.08GB free) Process Argv --crash-reporter-id a910920d-1205-4d5b-bb90-06a303804f97 Screen Reader no VM 0% /gifPlease Ok thanks. Will sort that later today. Best regards Matt Holmes Director Origin London Ltd @.*** UK: 07500847210 Int: +447500847210 Companies House Number: 7302875 VAT Registration Number: GB231798196 Registered Office: 52 Llanover Road, London. SE18 3SU From: Benjamin Pasero @.***> Sent: Thursday, 3 March 2022, 11:44 To: microsoft/vscode Cc: originlondon; Author Subject: Re: [microsoft/vscode] Double click on tab no longer returns layout to original (Issue #144311) /gifPlease — Reply to this email directly, view it on GitHubhttps://github.com/microsoft/vscode/issues/144311#issuecomment-1057960727, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH7Y25OQI25IIB4HEAARYOLU6CQY7ANCNFSM5P2AIEBA. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you authored the thread.Message ID: @.***> Thanks I was asked to explain further with a screencast. I have uploaded an mp4 and tried to embed a gif as requested, but couldn't as the mp4 converted to a gif was too large. It seems to display inline with mp4 though anyway. https://user-images.githubusercontent.com/33525109/157091189-ef01fec6-1e59-4e57-bf98-de38377631d7.mp4 @originlondon I see but you indicate this has changed recently? I do not think so. Can you clarify? I believe it was working as described in October last year. I couls be mistaken, as I took a break from coding for a few months. My larger screen broke so I had to use an older smaller one. I also remember discovering that feature when using just a left-right split. So I discovered the feature around July/August last year, perhaps. But I am pretty sure that it used to work like that as I used to keep four or five core scss variable definition files at the bottom of my left panel, each with just a few key lines showing and then expand and contract them as necessary, if needed to see the rest of the file, rather than search through them via the dropdown, or flick along the tabs or choose them in the open tabs browser in the panel. Apologies for any typos, I was finding this difficult to write as Microsoft Outlook on Android mobile was not doing 'cut' functionality, only copy, paste and delete - weird. Lol. (not going to report that just yet - could be an Android thing after an update last night and its indicating another one due, which could correct that). Thanks. Best regards Matt Holmes Director Origin London Ltd @.*** UK: 07500847210 Int: +447500847210 Companies House Number: 7302875 VAT Registration Number: GB231798196 Registered Office: 52 Llanover Road, London. SE18 3SU From: Benjamin Pasero @.> Sent: Tuesday, March 8, 2022 6:28:33 AM To: microsoft/vscode @.> Cc: originlondon @.>; Mention @.> Subject: Re: [microsoft/vscode] Double click on tab no longer returns layout to original (Issue #144311) @originlondonhttps://github.com/originlondon I see but you indicate this has changed recently? I do not think so. Can you clarify? — Reply to this email directly, view it on GitHubhttps://github.com/microsoft/vscode/issues/144311#issuecomment-1061453056, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH7Y25IF4XMFT5SWPADNSLLU63XRDANCNFSM5P2AIEBA. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you were mentioned.Message ID: @.***> I think this is working for a long time like that, but treating as feature request. //cc @joaomoreno @sbatten since this is grid related. Ok thank you! Best regards Matt Holmes Director Origin London Ltd @.*** UK: 07500847210 Int: +447500847210 Companies House Number: 7302875 VAT Registration Number: GB231798196 Registered Office: 52 Llanover Road, London. SE18 3SU From: VS Code Issue Triage Bot @.> Sent: Tuesday, March 8, 2022 8:13:49 AM To: microsoft/vscode @.> Cc: originlondon @.>; Mention @.> Subject: Re: [microsoft/vscode] Allow double click on tab to return layout to original (Issue #144311) This feature request is now a candidate for our backlog. The community has 60 days to upvotehttps://github.com/microsoft/vscode/wiki/Issues-Triaging#up-voting-a-feature-request the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentationhttps://aka.ms/vscode-issue-lifecycle. Happy Coding! — Reply to this email directly, view it on GitHubhttps://github.com/microsoft/vscode/issues/144311#issuecomment-1061515320, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH7Y25O3OKQDCYCP4LNIC4DU64D33ANCNFSM5P2AIEBA. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you were mentioned.Message ID: @.***> :slightly_frowning_face: In the last 60 days, this feature request has received less than 20 community upvotes and we closed it. Still a big Thank You to you for taking the time to create this issue! To learn more about how we handle feature requests, please see our documentation. Happy Coding!
gharchive/issue
2022-03-03T10:12:55
2025-04-01T06:39:36.403493
{ "authors": [ "VSCodeTriageBot", "bpasero", "originlondon" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/144311", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1190060305
Allow users to override an extension's Activation Event in settings.json Pretty much all in the title. A lot of extensions don't seem to care about choosing the most optimal Activation Event, or some extensions are simply having a hard time not to lag while running on a remote server, while they work just fine locally... It would be great if users could easily override it in settings.json if they desire, without needing to fork the whole extension and edit it on their own. Would it be possible somehow? I'm wondering what are some extensions that currently have this issue? Hi again, sorry i had to take a job break for health reasons. @rzhao271 It would rather be for test purposes. Most extension are super fast on a regular network, but for some reason on a job network with picky firewall some will get really slow. Being able to test different Activation Event on our own could allow developers to suggest improvement to some extensions that would not be a problem for most users; and in the case the number of users it would benefit would be too low to be worth adressing, the user could try dealing with the issue on their own without needing to fork extensions. I'm not on my job network right now and might not be for some time. I would have been pleased to provide you examples of Extensions giving me problems (there aren't that many anyway), but i can't right now. Also after a lot of testing trying to figure out a solution, i noticed that some slow-to-start extensions aren't problematic on their own, but starts to be when combined with other Extensions, most notably Python. Considering similar issues i've read online, it seems to be a problem with C++ extension too; i guess it might have something to do with compilers/debuggers, but that's just a guess i couldn't really tell. It seemed to me it wouldn't necessarily be very complicated to implement, and might be a good idea in this context. I could be wrong. I'm aware users could end up shooting their own foot by tweaking such setting. I would be pleased to get more info about the feasibility of such feature, the possibility it could lead to security issues, or any problem related to it. I guess there are some since there was a downvote on my issue, but no further information was given by the disliking dev. Could you reopen the issue? This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation. Happy Coding! This feature request has not yet received the 20 community upvotes it takes to make to our backlog. 10 days to go. To learn more about how we handle feature requests, please see our documentation. Happy Coding! :slightly_frowning_face: In the last 60 days, this feature request has received less than 20 community upvotes and we closed it. Still a big Thank You to you for taking the time to create this issue! To learn more about how we handle feature requests, please see our documentation. Happy Coding!
gharchive/issue
2022-04-01T17:02:43
2025-04-01T06:39:36.410683
{ "authors": [ "DillPickle80", "VSCodeTriageBot", "rzhao271" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/146566", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1225826829
Synchronous launch compounds Launch compounds in workspaces launch asynchronously. While this saves launch time, we found a couple of issues with this: Following quick pick menu / input box will cancel the previous one. If two launch task both have such requirements, then one of them ends up to be cancelled. One launch may depend on another. Although launching them one at a time is a workaround, it requires a lot of mouse clicks, and is error-prone if there are a lot of launch configs in a project. So a synchronous launch compounds feature might be a great addition. Feel free to provide other workarounds though. The first issue is https://github.com/microsoft/vscode/issues/141514 The second, I'm not sure we can do anything about it. How can we know when one config is "done launching" so that a dependent config can be started? Is it ready when we have attached to the debuggee and initialized the session? Can you give an example of when you have a launch config that depends on another. The second issue is a suspicion since our project is still in its early state. A possible usage is one project starts a service, and the second, like a test or some user space app, uses this service. Is returning from startDebugging(), which is in vs code api but there should be something equivalent internally, not enough to decide a launch action is completed? not enough to decide a launch action is completed Maybe - the second project depends on "something" from the first project, and there is no way to know generically when the first project is in the right state that the second needs. But I think if we tried to address this we would want to change the launch.json format to let us declare dependencies for a launch config. Curious whether you ever considered this @isidorn @weinand We have our own debug adapter, so we can work around this by adding a new launch config request type, which is only allowed in workspace, and in which force launch configs to start one by one. And the only criteria we are using to decide if the previous launch finishes is returning form await startDebugging(): for (const launchConfig of config.launchConfigurations) { const folderIndex = launchConfig.folderIndex; if (!isNumber(folderIndex) || folderIndex >= vscode.workspace.workspaceFolders.length || folderIndex < 0) { // Print error return; } await vscode.debug.startDebugging(vscode.workspace.workspaceFolders[folderIndex], launchConfig.launchConfigurationName); } And the reason I open this feature request is because, if VS Code has this built in, then I don't need to add a different request type for this. @roblourens we do not want to duplicate shell functionality in launch configs. If more control over process execution is needed, we recommend to use a shell script. @roblourens we do not want to duplicate shell functionality in launch configs. If more control over process execution is needed, we recommend to use a shell script. Is it possible to start debugging in VS Code via shell script? You approach is a good one @xisui-MSFT, it works for you but might not work in every situation, and I would not build it into vscode. You can also start your app in a shell script in debug mode, and write an "attach" config. Or if this is javascript, you can run a shell script in a "javascript debug terminal".
gharchive/issue
2022-05-04T19:41:52
2025-04-01T06:39:36.418250
{ "authors": [ "roblourens", "weinand", "xisui-MSFT" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/148735", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1290261981
MODULE PROBLEM I downloaded a module named pygame, but it said there is no module named pygame when I say 'import pygame'. /question
gharchive/issue
2022-06-30T14:59:10
2025-04-01T06:39:36.419437
{ "authors": [ "AreejElshrief", "gjsjohnmurray" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/153830", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1395151620
Node debugger not working in WSL Node debugger in WSL is not working. Node is installed in WSL but the debugger does not stop when adding breakpoints. All I am doing is creating a simple nodejs (v14.18) application, created the launch.json file and run the debugger. I have the following launch configuration. { "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Launch Program", "skipFiles": [ "<node_internals>/**" ], "program": "${workspaceFolder}/src/app.js" } ] } /jsDebugLogs Please collect trace logs using the following instructions: If you're able to, add "trace": true to your launch.json and reproduce the issue. The location of the log file on your disk will be written to the Debug Console. Share that with us. ⚠️ This log file will not contain source code, but will contain file paths. You can drop it into https://microsoft.github.io/vscode-pwa-analyzer/index.html to see what it contains. If you'd rather not share the log publicly, you can email it to connor@xbox.com Sent the trace file via email. Hmm, can you set "console":"internalTerminal" in your launch.json, and screenshot the resulting TERMINAL tab in VS Code? Hi Connor, I changed my node version from 14 to 16 and that solved the problem. I did not get a chance to try your fix but I will keep that in mind. Thanks for your help. Best, Genti On Tue, Oct 4, 2022 at 12:14 AM Connor Peet @.***> wrote: Hmm, can you set "console":"internalTerminal" in your launch.json, and screenshot the resulting TERMINAL tab in VS Code? — Reply to this email directly, view it on GitHub https://github.com/microsoft/vscode/issues/162602#issuecomment-1266374468, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACWRAYRZDKWBQ5J5CXITZ7TWBOVLXANCNFSM6AAAAAAQ33DW3Y . You are receiving this because you authored the thread.Message ID: @.***>
gharchive/issue
2022-10-03T18:31:44
2025-04-01T06:39:36.427163
{ "authors": [ "VSCodeTriageBot", "connor4312", "gentig" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/162602", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1405502818
Extension behaves VERY slowly during initialization while debugging In the latest insiders build, initialization timings for GitLens while debugging are VERY slow (like 10x slower than when running the exact same code in 1.72.1). I can't point to any one thing but most calls during GitLens startup are just taking WAY longer. It visibily takes many seconds for the GL icon to show up in the activity bar, but under 1.72.1 it happens very quickly. Not sure if its related, but restarting and stopping debugging seem to take extra long as well. Today's insiders build seems to have resolved the issue so far. I spoke too soon, with today's insiders the running code doesn't seem too slow, but stepping is VERY slow and stopping debugging gets stuck often (where I can't even click on anything) Can you tell me where in gitlens I could set a breakpoint to see this? I've been debugging vscode-jupyter with no issues This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines. Happy Coding!
gharchive/issue
2022-10-12T03:33:52
2025-04-01T06:39:36.430559
{ "authors": [ "VSCodeTriageBot", "eamodio", "roblourens" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/163390", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1414956261
Soft link causes the same source file to be edited in two windows at the same time Does this issue occur when all extensions are disabled?: Yes/No VS Code Version: 1.72.2 (Universal) commit: d045a5eda657f4d7b676dedbfa7aab8207f8a075 date: 2022-10-12T22:16:30.254Z Electron: 19.0.17 Chromium: 102.0.5005.167 Node.js: 16.14.2 V8: 10.2.154.15-electron.0 OS: Darwin x64 21.6.0 OS Version: macOS Monterey 12.5.1 After vscode opens the project in the soft link directory, jumps to the definition in the code file, a new file will be opened, and the path of the new file is displayed as the file in the original directory. Modifying one of the open files and saving them will trigger another unmodified "same" file window to also save, resulting in a messy file. Steps to Reproduce: Create a directory O, and create a soft link directory S to O; Create project proj under O, add project file main.cpp, and open S/proj in vscode; Open the file main.cpp through the left resource manager of vscode, add functions foo and bar, and call foo in bar; Hold down ctrl and click foo in the bar, the expectation is to jump to the definition of foo in the same file, but it actually opens a new tab, and the display path is O/proj/main.cpp; This works "as designed", we do not resolve symbolic links when you open an editor for performance reasons so you can end up having 2 distinct editors opened pointing to the same file with different buffers.
gharchive/issue
2022-10-19T13:15:48
2025-04-01T06:39:36.435484
{ "authors": [ "bpasero", "litaohe" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/164026", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1426884358
I can not open a new terminal or split the terminal Type: Bug I can not open a new terminal or split the terminal!! VS Code version: Code 1.72.1 (Universal) (129500ee4c8ab7263461ffe327268ba56b9f210d, 2022-10-10T17:25:13.482Z) OS version: Darwin arm64 20.6.0 Modes: Sandboxed: No Thanks for creating this issue! It looks like you may be using an old version of VS Code, the latest stable release is 1.72.2. Please try upgrading to the latest version and checking whether this issue remains. Happy Coding! /gifPlease Thanks for reporting this issue! Unfortunately, it's hard for us to understand what issue you're seeing. Please help us out by providing a screen recording showing exactly what isn't working as expected. While we can work with most standard formats, .gif files are preferred as they are displayed inline on GitHub. You may find https://gifcap.dev helpful as a browser-based gif recording tool. If the issue depends on keyboard input, you can help us by enabling screencast mode for the recording (Developer: Toggle Screencast Mode in the command palette). Happy coding! Fixed!
gharchive/issue
2022-10-28T08:23:15
2025-04-01T06:39:36.440119
{ "authors": [ "VSCodeTriageBot", "fpichlou", "gjsjohnmurray" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/164862", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }