aboutsummaryrefslogtreecommitdiff
path: root/extract-gcov.c
diff options
context:
space:
mode:
Diffstat (limited to 'extract-gcov.c')
-rw-r--r--extract-gcov.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/extract-gcov.c b/extract-gcov.c
index 8320b3a..75c1108 100644
--- a/extract-gcov.c
+++ b/extract-gcov.c
@@ -32,7 +32,8 @@
typedef unsigned int gcov_unsigned_int;
-#if __GNUC__ == 4 && __GNUC_MINOR__ >= 9
+/* You will need to pass -DTARGET__GNUC__=blah when building */
+#if TARGET__GNUC__ >= 4 && TARGET__GNUC_MINOR__ >= 9
#define GCOV_COUNTERS 9
#else
#define GCOV_COUNTERS 8