abi
Cross-compiling libraries for ARM device
I am experiencing some difficulties in deploying a sample application which uses Qt libraries to an ARM device. I compiled the libraries using the cross-compiler provided for my system, I copied the b[详细]
2023-02-15 03:40 分类:问答Automatic conversion of stucture to pointer in function call
We have a pretty normal looking printf style function in our project, with the modification that the %g format means to print a GUID instead of the normal floating-point type.For our case, a GUID look[详细]
2023-02-13 01:46 分类:问答C++ / Fortran inter language ABI issues with older versions of GCC
We have managed to get our code building and running on Ubuntu 10.10. The code uses both C++ compiled with GCC 4.5 and fortran compiled with the latest version of ifort. We may be required to support[详细]
2023-02-09 18:19 分类:问答What is ABI(Application Binary Interface)?
This is what wikipedia says: In computer software, an application binary interface (ABI) describes the low-level interface between an[详细]
2023-02-07 04:27 分类:问答C# interface breakage, ABI
Suppose we have the class X in version 1 of the assembly A.dll: class X { SomeType Property { set; get; }[详细]
2023-02-05 22:11 分类:问答Does opencl support boolean variables?
Does开发者_开发百科 openCL support boolean variables? I am currently using JOCL (java) to write my openCL calling code and I don\'t see anything about booleans.tl;dr: Yes, but you should avoid it in k[详细]
2023-01-30 18:24 分类:问答Best Practise and Semantics of namespace nested functions and the use of extern "C"
I am creating a C++ library with a C-ABI interface. This is how GCC treats the extern \"C\" qualifier with regards to mangling:[详细]
2023-01-25 08:52 分类:问答Can a C compiler generate an executable 64-bits where pointers are 32-bits?
Most programs fits well on <4GB address space but needs to use new features just available on x64 architecture.[详细]
2023-01-23 16:55 分类:问答Maintaining ABI: adding constructor to struct
We have a struct in revision 1 of a shared library that we need to maintain the ABI for: struct Person[详细]
2023-01-10 05:21 分类:问答GCC ABI compatibility
As far as I\'ve understood, it is not possible to link libraries that use different versions of GCC\'s Application Binary Interface (ABI). Are there ABI changes to every version of GCC? Is it possible[详细]
2022-12-29 14:32 分类:问答