You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FWIW, this is not a problem with older versions of google cloud profiler. You have to additionally place an upper bound on protobuf because google cloud profiler has an unrestricted dependency on it (🤦).
RUN pip3 install 'google-cloud-profiler<4.0.0' 'protobuf<=3.20.0' libsass==0.22.0
I deleted all of google-cloud-profiler except for #include <iostream> which is enough to trigger the bad behaviour
the cause from what I can tell is the link flag that profiler uses: -static-libstdc++ -- this breaks any future imports of extensions which use c++ code that may be compiled against a different libstdc++ -- I assume the libgcc1 link is probably just as problematic
if I remove the static link flags it all passes again
Hey all,
Apologies for bringing what I suspect will be a terribly hard bug to nail down.
Create a Dockerfile with this contents:
Build it:
And see this bizarre behavior:
In case it's not clear: I expected
bad.py
to produce the same CSS file asgood.py
The text was updated successfully, but these errors were encountered: