[Bug 44699] Clang 6.0 fails to run under wine

wine-bugs at winehq.org wine-bugs at winehq.org
Sat Mar 10 17:09:42 CST 2018


https://bugs.winehq.org/show_bug.cgi?id=44699

--- Comment #3 from Martell <martellmalone at gmail.com> ---
I was able to reproduce with this minimal example

```
#include <stdio.h>
#include <windows.h>
#include <wincrypt.h>
// -ladvapi32

int main(int argc, char* argv[]) {
    HCRYPTPROV provider;
    if (!CryptAcquireContextW(&provider, NULL, NULL, PROV_RSA_FULL,
CRYPT_VERIFYCONTEXT)) {
        printf("failed world\n");
        return -1;
    }
    printf("successful world\n");
    return 0;
}
```

I'm wondering if this could have anything to do with my host?
I am running this under alpine linux which uses musl libc.
https://github.com/alpinelinux/aports/blob/master/community/wine/APKBUILD

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list