如何在header-only模式下使用fmt库?
How to use fmt library in the header-only mode?
很难使用 fmt 库的 header-only 模式。这是我详细尝试的内容:
我从https://fmt.dev/latest/index.html下载了fmt7.1.3,只把目录fmt-7.1.3/include/fmt
放在一个目录([trgdir]
)下写了一个test.cpp如下:
#include <iostream>
#include <fmt/format.h>
int main() {
fmt::format("The answer is {}.", 42);
return 0;
}
然后在终端我使用
gcc -I[trgdir] test.cpp
其中 gcc 我定义为
alias gcc='gcc-10 -xc++ -lstdc++ -shared-libgcc -std=c++17 -O2 '
我得到的错误是
Undefined symbols for architecture x86_64:
"__ZN3fmt2v76detail7vformatB5cxx11ENS0_17basic_string_viewIcEENS0_11format_argsE", referenced from:
_main in ccEeTo0w.o
ld: symbol(s) not found for architecture x86_64
collect2: error: ld returned 1 exit status
我已经检查过这个 post 但我仍然无法解决我的问题。 How to use the fmt library without getting "Undefined symbols for architecture x86_64"
你需要在include之前定义一个宏,像这样:
#define FMT_HEADER_ONLY
#include "fmt/format.h"
很难使用 fmt 库的 header-only 模式。这是我详细尝试的内容:
我从https://fmt.dev/latest/index.html下载了fmt7.1.3,只把目录fmt-7.1.3/include/fmt
放在一个目录([trgdir]
)下写了一个test.cpp如下:
#include <iostream>
#include <fmt/format.h>
int main() {
fmt::format("The answer is {}.", 42);
return 0;
}
然后在终端我使用
gcc -I[trgdir] test.cpp
其中 gcc 我定义为
alias gcc='gcc-10 -xc++ -lstdc++ -shared-libgcc -std=c++17 -O2 '
我得到的错误是
Undefined symbols for architecture x86_64:
"__ZN3fmt2v76detail7vformatB5cxx11ENS0_17basic_string_viewIcEENS0_11format_argsE", referenced from:
_main in ccEeTo0w.o
ld: symbol(s) not found for architecture x86_64
collect2: error: ld returned 1 exit status
我已经检查过这个 post 但我仍然无法解决我的问题。 How to use the fmt library without getting "Undefined symbols for architecture x86_64"
你需要在include之前定义一个宏,像这样:
#define FMT_HEADER_ONLY
#include "fmt/format.h"