The bizarre error I get when running clang++.exe is the following:
This version of G:\clang+llvm-3.1-i386-mingw32-EXPERIMENTAL\bin\clang++.exe
is not compatible with the version of Windows you're running. Check your
computer's system information to see whether you need a x86 (32-bit) or x64
(64-bit) version of the program, and then contact the software publisher.
The dialog message box shows Unsupported 16-bit application. The binary I
downloaded is from here:
Experimental Clang Binaries for Mingw32/x86
<http://llvm.org/releases/3.1/clang+llvm-3.1-i386-mingw32-EXPERIMENTAL.tar.bz2>
clang.exe, however, does seem to execute ok (haven't tried compiling
anything with it yet). I tried running clang++.exe with various windows
compatibility but it didn't help. What could be causing the above error?
clang.exe, however, does seem to execute ok (haven't tried compiling
anything with it yet). I tried running clang++.exe with various windows
compatibility but it didn't help. What could be causing the above error?
Most probably the archiver you're using to unpack the tarball cannot
handle links properly. Just copy clang.exe over clang++.exe and you're
done.
Anton Korobeynikov wrote
Most probably the archiver you're using to unpack the tarball cannot
handle links properly. Just copy clang.exe over clang++.exe and you're
done.
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
_______________________________________________
cfe-dev mailing list
cfe-dev@.uiuc
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev
That sounds like it could be the cause. What should the size of clang++.exe
be? The extracted executable is showing 1kbyte in the folder while clang.exe
shows ~31.3Mbytes. Are these 2 files suppose to be identical but just named
differently?
Thanks for the quick reply.