On 01/06/2015 03:11 PM, Cyd Haselton wrote: > Assuming you're referring to the 4.8/4.9 libgcc build and not the > 4.8/4.9 gcc build, how do I tell which input file contains the call to > dlopen() if a mapfile isn't generated for the 49 libgcc link? find . -name '*.o' | while read i do echo $i nm $i | grep dlopen done