ld: Move the .note.build-id section to near the start of the memory map.
[binutils-gdb.git] / sim / testsuite / lib / linuxcheck.c
blobd1f4bc17a6bda3709725af3ef9f46401103c3452
1 /* Used by the test harness to see if toolchain targets Linux. */
2 #ifdef __linux__
3 int main()
5 return 0;
7 #else
8 # error "not linux"
9 #endif