gcc5/c++11 deprecates std::auto_ptr
[ardour.git] / tools / g++5ABIcheck / Makefile
1 all:
2         g++ -o gcc5stc++test.`gcc -print-multiarch` test.cc -Wall -std=c++11 -O0
3         nm gcc5stc++test.`gcc -print-multiarch` | c++filt | grep -q __cxx11
4         strip gcc5stc++test.`gcc -print-multiarch`
5
6 .PHONY: all