search for: fgcc

Displaying 4 results from an estimated 4 matches for "fgcc".

Did you mean: fcc
2013 Dec 10
2
[LLVMdev] Switching to the new MingW ABI
...to allow correct interop. If the user libraries were compiled with GCC 4.6 (which stills seems used by some MinGW distros) then once we upgrade to the latest Clang we'll start getting thiscall CC instead of the correct one used pre-4.7 for those libraries. If there was something like an "-fgcc-abi=4.6" flag we could pass to Clang, then it would provide us with the correct CCs for the given GCC version. If the community thinks that is undesirable for the project then we can work around it on our side, but it seems to me these details should be contained in Clang. On Tue, Dec 10, 2...
2013 Dec 10
0
[LLVMdev] Switching to the new MingW ABI
On 10 December 2013 09:16, João Matos <ripzonetriton at gmail.com> wrote: > For the current project I'm working on (https://github.com/mono/CppSharp) > having the flags to change the ABI based on a GCC version would be ideal. If > there are no flags, this means we must implement some logic to change the > calling conventions of methods manually to how they were pre-4.7.
2013 Dec 10
0
[LLVMdev] Switching to the new MingW ABI
...istros? This change would only show up on clang 3.5, and it is not even expected to build with gcc 4.6 > then once we upgrade > to the latest Clang we'll start getting thiscall CC instead of the correct > one used pre-4.7 for those libraries. If there was something like an > "-fgcc-abi=4.6" flag we could pass to Clang, then it would provide us with > the correct CCs for the given GCC version. > > If the community thinks that is undesirable for the project then we can work > around it on our side, but it seems to me these details should be contained > in Cl...
2013 Dec 10
2
[LLVMdev] Switching to the new MingW ABI
For the current project I'm working on (https://github.com/mono/CppSharp) having the flags to change the ABI based on a GCC version would be ideal. If there are no flags, this means we must implement some logic to change the calling conventions of methods manually to how they were pre-4.7. Should not be a lot of work but it'd be best to contain all the C++ ABI details inside Clang itself.