On Tue, Sep 6, 2022 at 6:46 AM Quentin Monnet <quentin@xxxxxxxxxxxxx> wrote: > [...] > + > +static int > +init_context(disasm_ctx_t *ctx, const char *arch, > + __maybe_unused const char *disassembler_options, > + __maybe_unused unsigned char *image, __maybe_unused ssize_t len) > +{ > + char *triple; > + > + if (arch) { > + p_err("Architecture %s not supported", arch); > + return -1; > + } Does this mean we stop supporting arch by default (prefer llvm over bfd)? Thanks, Song