0

I want to use latest gcc compiler, but target pc configuration only has libstdc++/libc suitable for gcc 4.8.

Is there any way to tell compiler to link against older abi?

Andrei R.
  • 2,374
  • 1
  • 13
  • 27

1 Answers1

0

I've managed to run my application, built with newer compiler (gcc 6), when I used -std=gnu++11 flag. It seems explicitly specifying standard version makes compiler link to maximum required version of abi.

Andrei R.
  • 2,374
  • 1
  • 13
  • 27