13
0
livetrax/tools/g++5ABIcheck/Makefile

7 lines
205 B
Makefile
Raw Normal View History

2015-09-11 06:36:08 -04:00
all:
g++ -o gcc5stc++test.`gcc -print-multiarch` test.cc -Wall -std=c++11 -O0
nm gcc5stc++test.`gcc -print-multiarch` | c++filt | grep -q __cxx11
strip gcc5stc++test.`gcc -print-multiarch`
.PHONY: all