diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-02-17 12:47:01 +0100 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-02-17 12:47:01 +0100 |
| commit | ef958abdaed3ccbbf1d07238db4f281d805678d0 (patch) | |
| tree | 929f7d1eefac0d9d03e541deae1d58ee423ca7a4 | |
| parent | b05b762ed45c6c8967fce098c598ec1a6ed7a533 (diff) | |
| download | rockbox-ef958abdaed3ccbbf1d07238db4f281d805678d0.zip rockbox-ef958abdaed3ccbbf1d07238db4f281d805678d0.tar.gz rockbox-ef958abdaed3ccbbf1d07238db4f281d805678d0.tar.bz2 rockbox-ef958abdaed3ccbbf1d07238db4f281d805678d0.tar.xz | |
mkimxtool: increase performance by compiling with O3
Change-Id: I3d69801488abec4fbc2a84665614936105f60ad2
| -rw-r--r-- | rbutil/mkimxboot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/mkimxboot/Makefile b/rbutil/mkimxboot/Makefile index 0172ae9..a81b960 100644 --- a/rbutil/mkimxboot/Makefile +++ b/rbutil/mkimxboot/Makefile @@ -8,7 +8,7 @@ # We use the SB code available in the Rockbox utils/sbtools directory IMXTOOLS_DIR=../../utils/imxtools/sbtools/ CFLAGS += -I$(IMXTOOLS_DIR) -Wall -CFLAGS += -std=c99 -g +CFLAGS += -std=c99 -g -O3 OUTPUT = mkimxboot |