Neal Tibrewala wrote:
Unable to load plugin "plugin"

Is there any way to find out why it's having trouble, or geta more useful
error message (-debug doesn't help and it doesn't produce a debug.log
file)?  is it finding the binary?  Is there a problem with how it was
compiled?

using strace will tell you if it was able to find the plugin or not (if one of the open calls on the library succeeds)

If it is able to find it, but not load it, you can find out why by
making a small test program to load the plugin and report any errors
containing something like:


void* handle = dlopen("./plugin_i486.so", 2);

    if (!handle) {
        cerr << "Cannot open library: " << dlerror() << '\n';
        return 1;
    }

_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlcoders



Reply via email to