From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gustavo Zacarias Date: Tue, 19 Nov 2013 09:30:54 -0300 Subject: [Buildroot] buildroot: gcc options In-Reply-To: References: Message-ID: <528B59FE.6070205@zacarias.com.ar> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net On 11/19/2013 09:17 AM, Altunbas Sabri (DC-IA/EAH2) wrote: > Hi Thomas, > > my problem is still not solved. > > I picked "Buildroot toolchain" and "eglibc" as C-library and get the following error > .. > configure: error: unrecognized option: `-mfmovd' > .. > With "uclibs" the same behave. > > My config is attented > > Can you give some hints ? Hi. Actually BR2_EXTRA_GCC_CONFIG_OPTIONS isn't for that. You need to set BR2_TARGET_OPTIMIZATIONS for all the packages to be built with those CFLAGS, and you need to add them to GLIBC_EXTRA_CFLAGS/UCLIBC_EXTRA_CFLAGS (depending on which libc you want to use) - problem is that isn't supported in an easy way at the moment. The quick way to test it would be to call make with those arguments in every invocation (actually until your libc is built, for packages BR2_TARGET_OPTIMIZATIONS does the trick), something like: make GLIBC_EXTRA_CFLAGS="-madlign -mfmovd" Regards.