This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.
See the CrossGCC FAQ for lots more information.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
"Yann E. MORIN" wrote: > I'm a bit short on time (as usual :-]), so any insights as to what is goin' > amiss would be welcome! :-) This looks like the old problem of the fact that the default instruction set used by x86 gcc is that of the 386, the lowest common denominator. The atomic builtins only appeared on the 486 and later, so either gcc needs to be configured --with-arch=486 or higher, or the file being compiled needs to have -march=486 or higher in its CFLAGS. Otherwise, those builtins won't be available and you get the error as in $subject when trying to build code that uses them. Brian -- For unsubscribe information see http://sourceware.org/lists.html#faq
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |