
해당 오류는 SeasLog 라이브러리의 critical 메서드가 정의되지 않았거나, 링크가 제대로 되지 않은 것 때문입니다.
해결 방법은 두 가지가 있습니다.
1. SeasLog 라이브러리의 critical 메서드를 정의하도록 수정하세요.
예를 들어, SeasLog.h 파일에 다음과 같이 추가할 수 있습니다.
#hostingforum.kr
cpp
class SeasLog {
public:
static void critical(const char* message);
};
그리고 SeasLog.cpp 파일에 다음과 같이 구현할 수 있습니다.
#hostingforum.kr
cpp
#include "SeasLog.h"
void SeasLog::critical(const char* message) {
// 로그 기록 로직
}
2. SeasLog 라이브러리의 critical 메서드를 사용하기 전에, 라이브러리를 링크하도록 수정하세요.
예를 들어, Makefile이나 CMakeLists.txt 파일에 다음과 같이 추가할 수 있습니다.
#hostingforum.kr
makefile
g++ -o example example.cpp SeasLog.o -lSeasLog
또는
#hostingforum.kr
cmake
target_link_libraries(example SeasLog)
이러한 수정을 통해 오류를 해결할 수 있습니다.
2025-04-06 10:35