def weakReferencesFromHeader(h):
        list = filter(lambda (lc,cmd,data): lc.cmd == LC_LOAD_WEAK_DYLIB, h.commands)
        return map(lambda (lc,cmd,data): decodeLoadCommandData(data), list)