Giter Site home page Giter Site logo

Comments (4)

jtv avatar jtv commented on May 18, 2024

Recent gcc versions compile C++14 by default. If you're using an older version, add the flag to the "configure" command line:

./configure CXXFLAGS='-std=c++11'

(Of course you can also say c++14 to get a more modern dialect.)

I could add this option in the configure script, but that opens the door to questions like: What if your compiler uses a different option for this? Which C++ versions does your compiler version support? What if you want a different C++ version? What if the compiler defaults to a newer version?

So the best solution, I think, is to set this option in your "configure" until your systems are upgraded to more recent compiler versions. I was tempted to make C++14 the minimum, but I kept it to C++11 for now to minimise these problems...

from libpqxx.

Yanpas avatar Yanpas commented on May 18, 2024

Thanks, didn't know. I barely know autotools but CMake has CXX_STANDARD option. If there is something similar you may add this to configure script.

from libpqxx.

jtv avatar jtv commented on May 18, 2024

I don't know of anything like that, but now that you bring it up, I did notice something strange: on an older gcc, if I passed -std=c++17 or -std=c++20, the command line would still say -std=c++14 β€” I guess maybe that was the newest standard which that compiler supported.

So probably there is some logic for picking the C++ standard in there. But I'm sort of afraid to mess with it! :)

from libpqxx.

jtv avatar jtv commented on May 18, 2024

I just got "configure" to add the C++11 option. This does mean that autogen.sh now requires the autoconf-archive package.

from libpqxx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.