projects
/
pub
/
USBasp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
244c864
)
Replace -finline-limit with -fno-inline-small-functions in project makefiles.
author
Dean Camera
<dean@fourwalledcubicle.com>
Sun, 30 Aug 2009 06:52:03 +0000
(06:52 +0000)
committer
Dean Camera
<dean@fourwalledcubicle.com>
Sun, 30 Aug 2009 06:52:03 +0000
(06:52 +0000)
45 files changed:
Demos/Device/ClassDriver/AudioInput/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/AudioOutput/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/CDC/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/DualCDC/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/GenericHID/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/Joystick/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/Keyboard/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/KeyboardMouse/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/MIDI/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/MassStorage/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/Mouse/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/RNDISEthernet/makefile
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/USBtoSerial/makefile
patch
|
blob
|
blame
|
history
Demos/Device/Incomplete/Sideshow/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/AudioInput/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/AudioOutput/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/DualCDC/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/GenericHID/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/Joystick/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/Keyboard/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/KeyboardMouse/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/MIDI/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/MassStorage/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/Mouse/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/RNDISEthernet/makefile
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/USBtoSerial/makefile
patch
|
blob
|
blame
|
history
Demos/Host/ClassDriver/CDCHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/ClassDriver/MassStorageHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/ClassDriver/MouseHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/Incomplete/BluetoothHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/LowLevel/CDCHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/LowLevel/GenericHIDHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/LowLevel/KeyboardHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/LowLevel/KeyboardHostWithParser/makefile
patch
|
blob
|
blame
|
history
Demos/Host/LowLevel/MassStorageHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/LowLevel/MouseHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/LowLevel/MouseHostWithParser/makefile
patch
|
blob
|
blame
|
history
Demos/Host/LowLevel/PrinterHost/makefile
patch
|
blob
|
blame
|
history
Demos/Host/LowLevel/StillImageHost/makefile
patch
|
blob
|
blame
|
history
LUFA/ManPages/FutureChanges.txt
patch
|
blob
|
blame
|
history
Projects/AVRISP/AVRISP.c
patch
|
blob
|
blame
|
history
Projects/AVRISP/makefile
patch
|
blob
|
blame
|
history
Projects/Benito/makefile
patch
|
blob
|
blame
|
history
Projects/Magstripe/makefile
patch
|
blob
|
blame
|
history
Projects/MissileLauncher/makefile
patch
|
blob
|
blame
|
history
diff --git
a/Demos/Device/ClassDriver/AudioInput/makefile
b/Demos/Device/ClassDriver/AudioInput/makefile
index
586939d
..
41f59a4
100644
(file)
--- a/
Demos/Device/ClassDriver/AudioInput/makefile
+++ b/
Demos/Device/ClassDriver/AudioInput/makefile
@@
-219,9
+219,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/AudioOutput/makefile
b/Demos/Device/ClassDriver/AudioOutput/makefile
index
3a3f90e
..
686154c
100644
(file)
--- a/
Demos/Device/ClassDriver/AudioOutput/makefile
+++ b/
Demos/Device/ClassDriver/AudioOutput/makefile
@@
-220,9
+220,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/CDC/makefile
b/Demos/Device/ClassDriver/CDC/makefile
index
afd36f0
..
f3b34c2
100644
(file)
--- a/
Demos/Device/ClassDriver/CDC/makefile
+++ b/
Demos/Device/ClassDriver/CDC/makefile
@@
-218,9
+218,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/DualCDC/makefile
b/Demos/Device/ClassDriver/DualCDC/makefile
index
6c740f9
..
cdacd2d
100644
(file)
--- a/
Demos/Device/ClassDriver/DualCDC/makefile
+++ b/
Demos/Device/ClassDriver/DualCDC/makefile
@@
-218,9
+218,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/GenericHID/makefile
b/Demos/Device/ClassDriver/GenericHID/makefile
index
a304eff
..
17253ca
100644
(file)
--- a/
Demos/Device/ClassDriver/GenericHID/makefile
+++ b/
Demos/Device/ClassDriver/GenericHID/makefile
@@
-219,9
+219,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/Joystick/makefile
b/Demos/Device/ClassDriver/Joystick/makefile
index
1432956
..
8b447e5
100644
(file)
--- a/
Demos/Device/ClassDriver/Joystick/makefile
+++ b/
Demos/Device/ClassDriver/Joystick/makefile
@@
-219,9
+219,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/Keyboard/makefile
b/Demos/Device/ClassDriver/Keyboard/makefile
index
98671a5
..
45e9ce4
100644
(file)
--- a/
Demos/Device/ClassDriver/Keyboard/makefile
+++ b/
Demos/Device/ClassDriver/Keyboard/makefile
@@
-219,9
+219,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/KeyboardMouse/makefile
b/Demos/Device/ClassDriver/KeyboardMouse/makefile
index
ec5f34d
..
31393dd
100644
(file)
--- a/
Demos/Device/ClassDriver/KeyboardMouse/makefile
+++ b/
Demos/Device/ClassDriver/KeyboardMouse/makefile
@@
-219,9
+219,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/MIDI/makefile
b/Demos/Device/ClassDriver/MIDI/makefile
index
8f39f55
..
664e272
100644
(file)
--- a/
Demos/Device/ClassDriver/MIDI/makefile
+++ b/
Demos/Device/ClassDriver/MIDI/makefile
@@
-218,9
+218,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/MassStorage/makefile
b/Demos/Device/ClassDriver/MassStorage/makefile
index
0da371b
..
18566ca
100644
(file)
--- a/
Demos/Device/ClassDriver/MassStorage/makefile
+++ b/
Demos/Device/ClassDriver/MassStorage/makefile
@@
-220,9
+220,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/Mouse/makefile
b/Demos/Device/ClassDriver/Mouse/makefile
index
f2a6a00
..
5c7bf94
100644
(file)
--- a/
Demos/Device/ClassDriver/Mouse/makefile
+++ b/
Demos/Device/ClassDriver/Mouse/makefile
@@
-219,9
+219,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
#CFLAGS += -mshort-calls
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
#CFLAGS += -mshort-calls
\r
diff --git
a/Demos/Device/ClassDriver/RNDISEthernet/makefile
b/Demos/Device/ClassDriver/RNDISEthernet/makefile
index
c39703e
..
2c0dfb8
100644
(file)
--- a/
Demos/Device/ClassDriver/RNDISEthernet/makefile
+++ b/
Demos/Device/ClassDriver/RNDISEthernet/makefile
@@
-230,9
+230,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/ClassDriver/USBtoSerial/makefile
b/Demos/Device/ClassDriver/USBtoSerial/makefile
index
34445ef
..
d61cd37
100644
(file)
--- a/
Demos/Device/ClassDriver/USBtoSerial/makefile
+++ b/
Demos/Device/ClassDriver/USBtoSerial/makefile
@@
-219,9
+219,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/Incomplete/Sideshow/makefile
b/Demos/Device/Incomplete/Sideshow/makefile
index
018c261
..
2b0a7d7
100644
(file)
--- a/
Demos/Device/Incomplete/Sideshow/makefile
+++ b/
Demos/Device/Incomplete/Sideshow/makefile
@@
-223,9
+223,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/AudioInput/makefile
b/Demos/Device/LowLevel/AudioInput/makefile
index
34deacc
..
ee6e12c
100644
(file)
--- a/
Demos/Device/LowLevel/AudioInput/makefile
+++ b/
Demos/Device/LowLevel/AudioInput/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/AudioOutput/makefile
b/Demos/Device/LowLevel/AudioOutput/makefile
index
0041d7b
..
492c152
100644
(file)
--- a/
Demos/Device/LowLevel/AudioOutput/makefile
+++ b/
Demos/Device/LowLevel/AudioOutput/makefile
@@
-218,9
+218,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/DualCDC/makefile
b/Demos/Device/LowLevel/DualCDC/makefile
index
4d49bdc
..
f3d2102
100644
(file)
--- a/
Demos/Device/LowLevel/DualCDC/makefile
+++ b/
Demos/Device/LowLevel/DualCDC/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/GenericHID/makefile
b/Demos/Device/LowLevel/GenericHID/makefile
index
c57bea7
..
554d74d
100644
(file)
--- a/
Demos/Device/LowLevel/GenericHID/makefile
+++ b/
Demos/Device/LowLevel/GenericHID/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/Joystick/makefile
b/Demos/Device/LowLevel/Joystick/makefile
index
d26cc91
..
83d1019
100644
(file)
--- a/
Demos/Device/LowLevel/Joystick/makefile
+++ b/
Demos/Device/LowLevel/Joystick/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/Keyboard/makefile
b/Demos/Device/LowLevel/Keyboard/makefile
index
5a7d4c7
..
00d27ec
100644
(file)
--- a/
Demos/Device/LowLevel/Keyboard/makefile
+++ b/
Demos/Device/LowLevel/Keyboard/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/KeyboardMouse/makefile
b/Demos/Device/LowLevel/KeyboardMouse/makefile
index
c067360
..
8fc5be5
100644
(file)
--- a/
Demos/Device/LowLevel/KeyboardMouse/makefile
+++ b/
Demos/Device/LowLevel/KeyboardMouse/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/MIDI/makefile
b/Demos/Device/LowLevel/MIDI/makefile
index
7847af0
..
e45df19
100644
(file)
--- a/
Demos/Device/LowLevel/MIDI/makefile
+++ b/
Demos/Device/LowLevel/MIDI/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/MassStorage/makefile
b/Demos/Device/LowLevel/MassStorage/makefile
index
788dbb2
..
66cc074
100644
(file)
--- a/
Demos/Device/LowLevel/MassStorage/makefile
+++ b/
Demos/Device/LowLevel/MassStorage/makefile
@@
-219,9
+219,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/Mouse/makefile
b/Demos/Device/LowLevel/Mouse/makefile
index
aba69e4
..
04997b9
100644
(file)
--- a/
Demos/Device/LowLevel/Mouse/makefile
+++ b/
Demos/Device/LowLevel/Mouse/makefile
@@
-216,9
+216,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
#CFLAGS += -mshort-calls
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
#CFLAGS += -mshort-calls
\r
diff --git
a/Demos/Device/LowLevel/RNDISEthernet/makefile
b/Demos/Device/LowLevel/RNDISEthernet/makefile
index
c4e9ddf
..
d7a94f6
100644
(file)
--- a/
Demos/Device/LowLevel/RNDISEthernet/makefile
+++ b/
Demos/Device/LowLevel/RNDISEthernet/makefile
@@
-230,9
+230,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Device/LowLevel/USBtoSerial/makefile
b/Demos/Device/LowLevel/USBtoSerial/makefile
index
be87e65
..
153fca5
100644
(file)
--- a/
Demos/Device/LowLevel/USBtoSerial/makefile
+++ b/
Demos/Device/LowLevel/USBtoSerial/makefile
@@
-218,9
+218,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/ClassDriver/CDCHost/makefile
b/Demos/Host/ClassDriver/CDCHost/makefile
index
9161af1
..
d9c967b
100644
(file)
--- a/
Demos/Host/ClassDriver/CDCHost/makefile
+++ b/
Demos/Host/ClassDriver/CDCHost/makefile
@@
-216,9
+216,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/ClassDriver/MassStorageHost/makefile
b/Demos/Host/ClassDriver/MassStorageHost/makefile
index
614d04a
..
9e4d120
100644
(file)
--- a/
Demos/Host/ClassDriver/MassStorageHost/makefile
+++ b/
Demos/Host/ClassDriver/MassStorageHost/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/ClassDriver/MouseHost/makefile
b/Demos/Host/ClassDriver/MouseHost/makefile
index
0cd3489
..
9134c3a
100644
(file)
--- a/
Demos/Host/ClassDriver/MouseHost/makefile
+++ b/
Demos/Host/ClassDriver/MouseHost/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/Incomplete/BluetoothHost/makefile
b/Demos/Host/Incomplete/BluetoothHost/makefile
index
28f64e2
..
e16fd40
100644
(file)
--- a/
Demos/Host/Incomplete/BluetoothHost/makefile
+++ b/
Demos/Host/Incomplete/BluetoothHost/makefile
@@
-220,9
+220,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/LowLevel/CDCHost/makefile
b/Demos/Host/LowLevel/CDCHost/makefile
index
b108bb5
..
c36fdc5
100644
(file)
--- a/
Demos/Host/LowLevel/CDCHost/makefile
+++ b/
Demos/Host/LowLevel/CDCHost/makefile
@@
-216,9
+216,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/LowLevel/GenericHIDHost/makefile
b/Demos/Host/LowLevel/GenericHIDHost/makefile
index
1e3dd34
..
e670801
100644
(file)
--- a/
Demos/Host/LowLevel/GenericHIDHost/makefile
+++ b/
Demos/Host/LowLevel/GenericHIDHost/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/LowLevel/KeyboardHost/makefile
b/Demos/Host/LowLevel/KeyboardHost/makefile
index
ececa9f
..
8825a6c
100644
(file)
--- a/
Demos/Host/LowLevel/KeyboardHost/makefile
+++ b/
Demos/Host/LowLevel/KeyboardHost/makefile
@@
-216,9
+216,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/LowLevel/KeyboardHostWithParser/makefile
b/Demos/Host/LowLevel/KeyboardHostWithParser/makefile
index
bb5a21d
..
aab3e7a
100644
(file)
--- a/
Demos/Host/LowLevel/KeyboardHostWithParser/makefile
+++ b/
Demos/Host/LowLevel/KeyboardHostWithParser/makefile
@@
-218,9
+218,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/LowLevel/MassStorageHost/makefile
b/Demos/Host/LowLevel/MassStorageHost/makefile
index
6993d3c
..
c3f7cbc
100644
(file)
--- a/
Demos/Host/LowLevel/MassStorageHost/makefile
+++ b/
Demos/Host/LowLevel/MassStorageHost/makefile
@@
-218,9
+218,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/LowLevel/MouseHost/makefile
b/Demos/Host/LowLevel/MouseHost/makefile
index
ca6735e
..
c0dca6e
100644
(file)
--- a/
Demos/Host/LowLevel/MouseHost/makefile
+++ b/
Demos/Host/LowLevel/MouseHost/makefile
@@
-216,9
+216,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/LowLevel/MouseHostWithParser/makefile
b/Demos/Host/LowLevel/MouseHostWithParser/makefile
index
bb2349d
..
52dc00c
100644
(file)
--- a/
Demos/Host/LowLevel/MouseHostWithParser/makefile
+++ b/
Demos/Host/LowLevel/MouseHostWithParser/makefile
@@
-218,9
+218,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/LowLevel/PrinterHost/makefile
b/Demos/Host/LowLevel/PrinterHost/makefile
index
371f814
..
5f25db9
100644
(file)
--- a/
Demos/Host/LowLevel/PrinterHost/makefile
+++ b/
Demos/Host/LowLevel/PrinterHost/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Demos/Host/LowLevel/StillImageHost/makefile
b/Demos/Host/LowLevel/StillImageHost/makefile
index
7b3cf16
..
6f80dc1
100644
(file)
--- a/
Demos/Host/LowLevel/StillImageHost/makefile
+++ b/
Demos/Host/LowLevel/StillImageHost/makefile
@@
-216,9
+216,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/LUFA/ManPages/FutureChanges.txt
b/LUFA/ManPages/FutureChanges.txt
index
639e4ee
..
d6d696b
100644
(file)
--- a/
LUFA/ManPages/FutureChanges.txt
+++ b/
LUFA/ManPages/FutureChanges.txt
@@
-20,6
+20,9
@@
* (C) Mass Storage
\r
* ( ) Still Image
\r
* - Add overviews of each of the officially supported boards to the manual
\r
* (C) Mass Storage
\r
* ( ) Still Image
\r
* - Add overviews of each of the officially supported boards to the manual
\r
+ * - Re-add in flip, flip-ee, dfu and dfu-ee targets to project makefiles
\r
+ * - Add in new invalid event hook check targets to project makefiles
\r
+ * - Fix allowable F_CPU values comment in project makefiles
\r
*
\r
* <b>Targeted for Future Releases:</b>
\r
* - Add hub support to match Atmel's stack
\r
*
\r
* <b>Targeted for Future Releases:</b>
\r
* - Add hub support to match Atmel's stack
\r
diff --git
a/Projects/AVRISP/AVRISP.c
b/Projects/AVRISP/AVRISP.c
index
e4d467f
..
016d74c
100644
(file)
--- a/
Projects/AVRISP/AVRISP.c
+++ b/
Projects/AVRISP/AVRISP.c
@@
-35,7
+35,7
@@
*/
\r
\r
// TODO: Add in software SPI for lower programming speeds below 125KHz
\r
*/
\r
\r
// TODO: Add in software SPI for lower programming speeds below 125KHz
\r
-// TODO: Add reversed target connector checks
\r
+// TODO: Add reversed
/shorted
target connector checks
\r
\r
#include "AVRISP.h"
\r
\r
\r
#include "AVRISP.h"
\r
\r
diff --git
a/Projects/AVRISP/makefile
b/Projects/AVRISP/makefile
index
5ea1176
..
0726f86
100644
(file)
--- a/
Projects/AVRISP/makefile
+++ b/
Projects/AVRISP/makefile
@@
-224,9
+224,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Projects/Benito/makefile
b/Projects/Benito/makefile
index
3ce738b
..
d598122
100644
(file)
--- a/
Projects/Benito/makefile
+++ b/
Projects/Benito/makefile
@@
-224,9
+224,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
diff --git
a/Projects/Magstripe/makefile
b/Projects/Magstripe/makefile
index
474a827
..
95d6d99
100644
(file)
--- a/
Projects/Magstripe/makefile
+++ b/
Projects/Magstripe/makefile
@@
-227,10
+227,10
@@
CFLAGS += $(CDEFS)
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
CFLAGS += -funsigned-bitfields
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
CFLAGS += -funsigned-bitfields
+CFLAGS += -fno-inline-small-functions
CFLAGS += -fpack-struct
CFLAGS += -fshort-enums
CFLAGS += -ffunction-sections
CFLAGS += -fpack-struct
CFLAGS += -fshort-enums
CFLAGS += -ffunction-sections
-CFLAGS += -finline-limit=20
CFLAGS += -Wall
CFLAGS += -Wstrict-prototypes
CFLAGS += -Wundef
CFLAGS += -Wall
CFLAGS += -Wstrict-prototypes
CFLAGS += -Wundef
diff --git
a/Projects/MissileLauncher/makefile
b/Projects/MissileLauncher/makefile
index
867b57a
..
7849893
100644
(file)
--- a/
Projects/MissileLauncher/makefile
+++ b/
Projects/MissileLauncher/makefile
@@
-217,9
+217,9
@@
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
CFLAGS += -funsigned-char
\r
CFLAGS += -funsigned-bitfields
\r
CFLAGS += -ffunction-sections
\r
+CFLAGS += -fno-inline-small-functions
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
CFLAGS += -fpack-struct
\r
CFLAGS += -fshort-enums
\r
-CFLAGS += -finline-limit=20
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r
CFLAGS += -Wall
\r
CFLAGS += -Wstrict-prototypes
\r
CFLAGS += -Wundef
\r