>If I assume I need soft float support and add the flag -msoft-float as the >kernel compile does, then I get a complaint about not having the soft-float >library. What floating point library does the SA110 need? If I grep the >libraries in the soft-float directory of the arm toolchain for the floatdidf >function I come up empty. libm matches, but doesn't seem to actually be the >correct library. Is there some way to pick up the one that is used in the >kernel?
This function is actually in libgcc.a. I don't know why it isn't being found in your case; maybe your gcc installation is damaged in some way, or you're trying to call `ld' directly, or something of that sort. You don't want to use -msoft-float; that would require you to install a whole other set of libraries. p. _______________________________________________ http://lists.arm.linux.org.uk/mailman/listinfo/linux-arm Please visit the above address for information on this list.
