summaryrefslogtreecommitdiff
path: root/tools/g++5ABIcheck/Makefile
blob: 3061785a8713651509ea82d27913973d9df55562 (plain)
1
2
3
4
5
6
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