Brian S. Park wrote: > Hi every one. > I need help with debugging u-boot. If I comple u-Boot without -Os > optimization, I get bunch of errors about missing functions. They are > inline functions (in_be32, out_be32, out_8, etc) and I'm not sure how > to make sure they are included when building the code without optimization. > > I'm using ELDK4.1 for windows and u-Boot-1.3.3 > > Any help or pointers will be appreciated. > > Thanks > > Brian
My vague recollections of gcc folklore is that you must use optimization when you use inlined functions. Maybe -fkeep-inline-functions fixes it? <http://gcc.gnu.org/onlinedocs/gcc/Inline.html> Sorry, gvb ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ U-Boot-Users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/u-boot-users
