mirror of
https://git.yoctoproject.org/poky
synced 2026-03-31 02:02:25 +02:00
The -Os option was disabled due to a bug in gcc building bad binaries for ARM in an earlier commit:f2dc7fadd8This caused problems for powerpc which was resolved by replacing -Os with -O2 for that architecture:d0eb6794d9Using -O2 also works for ARM, so there is no need to condition using -O2 on powerpc. Remove the condition and use -O2 on all architectures. Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Ilya Yanok <yanok@emcraft.com> CC: Richard Purdie <richard.purdie@linuxfoundation.org>