Class GNotificationCenterDelegate warning message
#1334
|
Environment: A warning message shows up after running
I found that issue #1182 reported the same issue. Does anyone still run into the same warning message? |
Replies: 1 comment 1 reply
|
Yes, this still happens, and the good news is it's harmless — it's a warning, not a crash, and it isn't really a Pake bug so much as a transitive-dependency quirk from What the message is telling you: two different builds of libvips are loaded into the same process, and both register an Objective-C class named You can see it in the paths — two different versions of the same package: Pake depends on Because only one copy is actually used, the "spurious casting failures and mysterious crashes" the linker threatens don't materialize here — for
If you installed |
Yes, this still happens, and the good news is it's harmless — it's a warning, not a crash, and it isn't really a Pake bug so much as a transitive-dependency quirk from
sharp.What the message is telling you: two different builds of libvips are loaded into the same process, and both register an Objective-C class named
GNotificationCenterDelegate(that class comes from GLib/GIO, which libvips bundles). The dynamic linker warns because two dylibs define the same class, and only one wins.You can see it in the paths — two different versions of the same package:
Pa…