Top "Abi" questions

The (Application Binary Interface) specifies the low level interface between the programs, libraries and the operating system.

Linking problems due to symbols with abi::cxx11?

We recently caught a report because of GCC 5.1, libstdc++ and Dual ABI. It seems Clang is not aware of the …

c++ linux gcc clang abi
Does C have a standard ABI?

From a discussion somewhere else: C++ has no standard ABI (Application Binary Interface) But neither does C, right? On any …

c abi
How to get ABI (Application Binary Interface) in android

It may be a duplicated question, but i'm unable to find it. I wonder how we can get what's the …

android abi
Android Studio : Missing Strip Tool

I am constantly getting this warning while building my android studio code using terminal command gradle clean assembleRelease: Unable to …

android android-studio arm static-libraries abi
Android NDK : what should I set in Application.mk for APP_ABI?

I am wondering which architectures I should put in the Application.mk file of my Android game. I want to …

android android-ndk x86 arm abi
How to avoid STT_GNU_IFUNC symbols in your binary?

I need to deploy to a Red Hat 4.1.2 box (which has gcc 4.1.2). I use GCC 4.6.1 on Ubuntu 11.10 for development. Unfortunately …

linux gcc abi
What is the format of the x86_64 va_list structure?

Anyone have a reference for the representation of va_list in the x86_64 ABI (the one used on Linux)? I'm …

c linux x86-64 variadic-functions abi
Using Scala 2.12 with Spark 2.x

At the Spark 2.1 docs it's mentioned that Spark runs on Java 7+, Python 2.6+/3.4+ and R 3.1+. For the Scala API, Spark 2.1.0 uses …

scala apache-spark abi binary-compatibility
Can you mix c++ compiled with different versions of the same compiler

For example could I mix a set of libraries that have been compiled in say GCC-4.6 with GCC-4.9. I'm aware …

c++ gcc abi gcc4.9 gcc4.6
Is it safe to link C++17, C++14, and C++11 objects

Suppose I have three compiled objects, all produced by the same compiler/version: A was compiled with the C++11 standard …

c++ c++11 linker c++14 abi