whisper.cpp icon indicating copy to clipboard operation
whisper.cpp copied to clipboard

Build fails on Fedora 38

Open jkrimmer opened this issue 1 year ago • 0 comments

Building whisper.cpp on Fedora 38 (GCC 13) fails due to a multitude of undefined symbols. The first error occurs since uint8_t has not been defined in this scope. As far as I have understood, this behavior is caused by a bug in GCC 13. Adding

#include <stdint.h>

in examples/common.cpp, resolves this issue.

jkrimmer avatar Apr 17 '23 06:04 jkrimmer