diff options
author | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-09-12 16:59:47 +0000 |
---|---|---|
committer | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-09-12 16:59:47 +0000 |
commit | 9edf898547d4ecf92516db465a1423d3b91921b1 (patch) | |
tree | f340ffc167f09f2efbae17162acf47826a8e2f0a | |
parent | 222393467b493ffa5940c717e2d4f7214ea9920d (diff) |
optimize for size, rather than performance
git-svn-id: https://svn.openpcd.org:2342/trunk@184 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
-rw-r--r-- | openpcd/firmware/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openpcd/firmware/Makefile b/openpcd/firmware/Makefile index 1a83d4d..3d8c42d 100644 --- a/openpcd/firmware/Makefile +++ b/openpcd/firmware/Makefile @@ -144,7 +144,7 @@ FORMAT = binary # Optimization level, can be [0, 1, 2, 3, s]. # 0 = turn off optimization. s = optimize for size. # (Note: 3 is not always the best optimization level. See avr-libc FAQ.) -OPT = 3 +OPT = s #OPT = 0 # Debugging format. |