binary-compatibility
About java Runtime self-written public API compatibility
I just encounter a real problem about changed API. And i want to know more about this topic. Using the following example as a demo.[详细]
2023-04-06 19:21 分类:问答ABI compatibility of interfaces (abstract classes) with other virtual changes
Does the ABI of the view of a class remain stable even if other changes, involving virtuals, are made in the derived class?[详细]
2023-04-04 23:58 分类:问答Good practices for writing C dynamic libraries [DSOs] (binary compatibility + memory management)
I have some experience writing C libraries but I\'ve never read any formal documents describing good practices while writing such libraries. My question pertains around mainly 2 topics:[详细]
2023-04-01 09:32 分类:问答Crosscompiler Binary compatibility in C
I need to verify something for which I have doubts. If a shared library ( .dll) is written in C, with the C99 standard and compiled under a compiler. Say MinGw. Then in my experience it is binary comp[详细]
2023-03-23 05:48 分类:问答Change pure virtual to virtual and stay binary compatible
Can I change a pure-virtual function (in a base class) to become non-pure开发者_如何学C without running into any binary compatibility issues? (Linux, GCC 4.1)[详细]
2023-03-21 03:37 分类:问答j2me polish binary compatibility
Is it possible using j2me polish to have only one jar file that run a开发者_JAVA百科cross multiple handset ?[详细]
2023-03-19 01:53 分类:问答Strange access violation at vector indexer
At first some introductions: I am currently working on a C++ compatibility thing which means being able to run projects with different compiler options with each other. Therefore I test wi开发者_如何学[详细]
2023-03-17 13:59 分类:问答__cdecl or __stdcall on Windows?
I\'m currently developing a C++ library for Windows which will be distributed as a DLL. My goal is to maximize binary interoperability; more precisely, the functions in my DLL must be usable from code[详细]
2023-03-16 04:12 分类:问答C++ and binary compatibility: returning a POD struct by value
Consider the following C++ code: struct X { int a; int b; }; X foobar() { X x = { 1, 2 }; return x; } Now assume this code is put in a shared library, which is used by third-party applications.[详细]
2023-03-11 18:00 分类:问答Binary file from one linux to another
Is there any possible way to run binary compiled on another Linux? I know that of course the easiest is to rebuild that on another machine but lets assume that the only thing we can get is a binary fi[详细]
2023-03-11 14:28 分类:问答