Reputation: 47
I have a program that uses string functions and requires to compile with c++0x.But I can't figure out how/where to put "-std=c++0x" my flag. I've only compiled using basic commands within makefile, so this is new to me. Here is my current makefile without the flag.
output: main.o rFunctions.o
g++ main.o rFunctions.o -0 Recursive
Upvotes: 1
Views: 578