Thomas Pöchtrager

Results 194 comments of Thomas Pöchtrager

It's actually autogen that doesn't recognize the architecture. The best way to work around this would be to use `--target=aarch64-...` instead of `arm64` and then in the wrapper add `-arch...

Clang should be adding `-lc++`. There must be something wrong with the compiler.

Sorry for the very late reply. It means the executable does not match with the architecture of your machine. Or there is something wrong with uclibc, musl, ...

Install MXE the normal way (including make gcc etc.) and ensure the MXE bin directory (where the MXE-gcc binary is located) is added to your PATH variable. After that install...

> Also, clang for windows doesn't support C++ exceptions, since most of the libraries use them it will be nearly imposible to compile something with wclang outside of your app....

You can't use the dlls from the LLVM installer. They use MSVC mangling and aren't compatible with the MinGW target. You must compile ASAN with wclang in order to get...

You could try to build OSXCross with `DISABLE_CLANG_AS=1 ./build.sh`. Maybe you will have some luck with that.

``` diff --git a/wrapper/programs/xcrun.cpp b/wrapper/programs/xcrun.cpp index df20157..ad462e1 100644 --- a/wrapper/programs/xcrun.cpp +++ b/wrapper/programs/xcrun.cpp @@ -247,6 +247,7 @@ int xcrun(int argc, char **argv, Target &target) { {"run", run, 1}, {"show-sdk-path", showSDKPath}, {"show-sdk-version",...

`--target=x86_64-apple-darwin` => `--target=x86_64-apple-darwin20.4`

It's the password you provide. It's sent hashed and base64 encoded to the router. Either the password is wrong or they have change the auth method. Ensure there's no typo...