Comment 11 for bug 1764701

Revision history for this message
Julian Andres Klode (juliank) wrote :

the version script is:

ADEQUATE_TEST {
  global: *;
};

and undef.c, which is linked against the first build with versioning is:

extern void this_symbol_might_be_undefined(void);

int main(int argc, char **argv)
{
        this_symbol_might_be_undefined();
        return 0;
}