build: enable cplugins by default

There's probably no reason to keep this disabled. The -rdynamic (and the
approach we use) is probably a bit scary, but should not break anything.

Just to be sure I'm hard-disabling this on win32 anyway. We know it
can't work there in its current form.

Fixes #4491.
This commit is contained in:
wm4 2017-06-07 20:42:46 +02:00
parent 6e481d00bd
commit 11c7775b2c
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ build_options = [
'name': '--cplugins',
'desc': 'C plugins',
'deps': [ 'libdl' ],
'default': 'disable',
'deps_neg': [ 'os-win32' ],
'func': check_cc(linkflags=['-rdynamic']),
}, {
'name': 'dlopen',