Am 18.06.2008 um 12:22 schrieb Andrew Lunn: >> I read about this and added a KEEP() around the regarding input >> sections, but it should not matter in this case, because for the >> variant.S file it works. > > Im not sure this is true. I guess the KEEP() will only help if the > object file is loaded. If no symbols in the file are referenced, it > never loads the file and so never knows it needs to keep anything. YES! Thanks Andrew this was the solution! variant.S had some other symbol that was referenced but platform.S did not have this symbol. If I make a "dummy" reference to the new code in platform.S from somewhere else gets included. Thanks again! Lars