summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2014-08-05 21:19:07 -0400
committerMichael Sevakis <jethead71@rockbox.org>2014-08-05 21:32:13 -0400
commit29f5385263367ada481cb91fb5f44b6c1f90c59c (patch)
tree930f6d591bb6c4996cd16050fc232179d3d9b638 /tools
parentbb7700928a05c42339be4f587b105659bc8dc2be (diff)
downloadrockbox-29f5385263367ada481cb91fb5f44b6c1f90c59c.tar.gz
rockbox-29f5385263367ada481cb91fb5f44b6c1f90c59c.zip
Fix up some more red
find_first_set_bit() becomes a small inline on ARMv5+ and checkwps now gets made with -std=gnu99 (it eats all the GCCOPTS) like the rest of things. Change-Id: Ie6039b17fec057a3dcb0f453d8fd5efac984df89
Diffstat (limited to 'tools')
-rw-r--r--tools/checkwps/checkwps.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkwps/checkwps.make b/tools/checkwps/checkwps.make
index 2ae15903a7..3720637595 100644
--- a/tools/checkwps/checkwps.make
+++ b/tools/checkwps/checkwps.make
@@ -7,7 +7,7 @@
7# $Id$ 7# $Id$
8# 8#
9 9
10GCCOPTS=-g -D__PCTOOL__ -DCHECKWPS $(TARGET) 10GCCOPTS=-std=gnu99 -g -D__PCTOOL__ -DCHECKWPS $(TARGET)
11 11
12CHECKWPS_SRC = $(call preprocess, $(TOOLSDIR)/checkwps/SOURCES) 12CHECKWPS_SRC = $(call preprocess, $(TOOLSDIR)/checkwps/SOURCES)
13CHECKWPS_OBJ = $(call c2obj,$(CHECKWPS_SRC)) 13CHECKWPS_OBJ = $(call c2obj,$(CHECKWPS_SRC))