Download raw body.
"got fetch" fails on PROFILE=1 build
Mikhail: > > We could simply disable both pledge and unveil if profiling is used. > > It is just a debug build so there is no reason to make things complicated. > > Disabling looks like the best solution. > +#ifndef PROFILE > -#ifdef PROFILE > -#endif > +#endif Instead of this #ifdef maze, should we neuter pledge() and unveil() with defines in a central header file? #ifdef PROFILE #undef pledge #undef unveil #define pledge(x, y) 0 #define unveil(x, y) 0 #endif What would be a good place? -- Christian "naddy" Weisgerber naddy@mips.inka.de
"got fetch" fails on PROFILE=1 build