Rishabh Bhardwaj
Rishabh Bhardwaj

Reputation: 207

Unable to compile openFrameworks

While trying to set up OF on eclipse (linux mint 17), I keep getting the following error :enter image description here

g++: error: unrecognized command line option ‘-std=c++14’

I cannot find a solution online. I have tried updating my g++, replacing my libs/frameworks/video files with the latest on github, but nothing seems to work.

Though this issue has been closed here, i am unable to solve mine.

Is there a way to change the make file so that it builds successfully?

Upvotes: 0

Views: 393

Answers (1)

g++ doesn't support -std=c++14 until 4.9

See (for example) https://askubuntu.com/questions/428198/getting-installing-gcc-g-4-9-on-ubuntu for how to install 4.9 on Ubuntu

Upvotes: 1

Related Questions