aboutsummaryrefslogtreecommitdiff
path: root/tools/machchk.sh
blob: fc8952ec3232442c8f96c953f726c0410768cb40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

getdefs() {
    gcc -dM -E - </dev/null | grep -E \
        "(__x86_64__|__amd64__|__i386__|__arm__|\
        __aarch64__|__linux__|__WIN32__|__APPLE__)"
}

echo "Dumping GCC machdep defines..."
echo "****************************************************"
getdefs
echo "****************************************************"