We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setting the dub arch type in a workspace, either through the "Switch Arch Type" command or the "d.dubArchType" setting, has no effect.
In an example project with:
dub.sdl:
dub.sdl
name "x86test" targetType "staticLibrary"
source/app.d:
source/app.d
static assert(is(size_t == uint)); extern(C) int main() => 0;
.vscode/settings.json:
.vscode/settings.json
{ "d.dubArchType": "x86" }
Running dub build fails with Error: static assert: is(ulong == uint) is false. Running dub build -ax86 succeeds.
dub build
Error: static assert: is(ulong == uint) is false
dub build -ax86
Code-d will always show the same error, even when x86 is selected:
(Switching to dmd doesn't help)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Setting the dub arch type in a workspace, either through the "Switch Arch Type" command or the "d.dubArchType" setting, has no effect.
In an example project with:
dub.sdl
:source/app.d
:.vscode/settings.json
:Running
dub build
fails withError: static assert: is(ulong == uint) is false
.Running
dub build -ax86
succeeds.Code-d will always show the same error, even when x86 is selected:
(Switching to dmd doesn't help)
The text was updated successfully, but these errors were encountered: