diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2014-08-05 21:19:07 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2014-08-05 21:32:13 -0400 |
| commit | 29f5385263367ada481cb91fb5f44b6c1f90c59c (patch) | |
| tree | 930f6d591bb6c4996cd16050fc232179d3d9b638 /tools | |
| parent | bb7700928a05c42339be4f587b105659bc8dc2be (diff) | |
| download | rockbox-29f5385263367ada481cb91fb5f44b6c1f90c59c.zip rockbox-29f5385263367ada481cb91fb5f44b6c1f90c59c.tar.gz rockbox-29f5385263367ada481cb91fb5f44b6c1f90c59c.tar.bz2 rockbox-29f5385263367ada481cb91fb5f44b6c1f90c59c.tar.xz | |
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.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkwps/checkwps.make b/tools/checkwps/checkwps.make index 2ae1590..3720637 100644 --- a/tools/checkwps/checkwps.make +++ b/tools/checkwps/checkwps.make @@ -7,7 +7,7 @@ # $Id$ # -GCCOPTS=-g -D__PCTOOL__ -DCHECKWPS $(TARGET) +GCCOPTS=-std=gnu99 -g -D__PCTOOL__ -DCHECKWPS $(TARGET) CHECKWPS_SRC = $(call preprocess, $(TOOLSDIR)/checkwps/SOURCES) CHECKWPS_OBJ = $(call c2obj,$(CHECKWPS_SRC)) |