yunho0130 / tensorflow-lite

O'Reilly <TinyML: 텐서플로우 라이트 Tensorflow Lite> 소스코드 저장소
https://www.tensorflow.org/lite/microcontrollers
Apache License 2.0
58 stars 49 forks source link

cstdarg: no such file or directory error #87

Open whjamin opened 3 years ago

whjamin commented 3 years ago

TinyML: Tensorflow lite for microcontroller 이슈

이곳은 텐서플로우 라이트 한글화 프로젝트의 Issue 공간입니다. 텐서플로우 자체에 이슈가 있다면 아래의 Github 링크나 Stack Overflow를 참조하시기 바랍니다.

include

namespace tflite {

class ErrorReporter { public: virtual ~ErrorReporter() {} virtual int Report(const char format, va_list args) = 0; int Report(const char format, ...); int ReportError(void, const char format, ...); };

}

ifndef TF_LITE_STRIP_ERROR_STRINGS

define TF_LITE_REPORT_ERROR(reporter, ...)

do {
reporter->Report(__VA_ARGS__);
} while (false)

else // TF_LITE_STRIP_ERROR_STRINGS

define TF_LITE_REPORT_ERROR(reporter, ...)

endif // TF_LITE_STRIP_ERROR_STRINGS

endif

(error_reporter.h 소스코드)

Tensorflow Github

Stack Overflow

yunho0130 commented 3 years ago

재현과정을 남겨주세요. output_handler.h 헤더파일 경로도 함께 남겨주세요

whjamin commented 3 years ago

수정했습니다.

yunho0130 commented 3 years ago

@bsm021031 혹시 원본 레포가 텐서플로우 공식 레포에서 받으신건가요?

whjamin commented 3 years ago

책에 기록되어있는 github 링크에서 받았습니다.