diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2009-07-29 14:31:17 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2009-07-29 14:31:17 +0000 |
| commit | e30f1e83c495727d2ecd108c225499c79e467ca8 (patch) | |
| tree | e73d5819cb7ebadb458a19e9d3c22f304afc7296 | |
| parent | 37dd46e92f776c1bc4ee83fdcaceb8d5e15fb5c8 (diff) | |
| download | rockbox-e30f1e83c495727d2ecd108c225499c79e467ca8.zip rockbox-e30f1e83c495727d2ecd108c225499c79e467ca8.tar.gz rockbox-e30f1e83c495727d2ecd108c225499c79e467ca8.tar.bz2 rockbox-e30f1e83c495727d2ecd108c225499c79e467ca8.tar.xz | |
Make gcc use -pipe instead of temporary files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22084 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 946cbda..b23d40e 100755 --- a/tools/configure +++ b/tools/configure @@ -9,7 +9,7 @@ # # global CC options for all platforms -CCOPTS="-W -Wall -Wundef -O -nostdlib -ffreestanding -Wstrict-prototypes" +CCOPTS="-W -Wall -Wundef -O -nostdlib -ffreestanding -Wstrict-prototypes -pipe" use_logf="#undef ROCKBOX_HAS_LOGF" |