i looked into IDA options but i couldn’t find pdb settings. every time i attach to my target, IDA tries loading PDB files for dll; it makes UI nonresponsive and clicking the cancel takes a minute or two.
how can i disable it or tell IDA to only load specific pdb files.
Additionally, you can look for pdb.cfg, for PDB-specific configuration.
Here is a snippet taken from that file:
// PDB information provider
#define PDB_PROVIDER_MSDIA 1 // use MSDIA local/remote provider
#define PDB_PROVIDER_PDBIDA 2 // use PDBIDA provider
//PDB_PROVIDER = PDB_PROVIDER_PDBIDA
// it is possible to specify the desired provider in the command line:
// ida -Opdb:off input_file
// ida -Opdb:msdia input_file
// ida -Opdb:pdbida input_file