From b882ca809a851e052453d6cacba46ccfc7aebf6e Mon Sep 17 00:00:00 2001 From: morpingsss Date: Thu, 18 Jul 2024 16:27:49 +0800 Subject: [PATCH] fix(llgo/cpp/tinyxml) : fix -> --- doc/LLGO Migration for C C++ Third-Party Libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/LLGO Migration for C C++ Third-Party Libraries.md b/doc/LLGO Migration for C C++ Third-Party Libraries.md index dd5c702b..07248195 100644 --- a/doc/LLGO Migration for C C++ Third-Party Libraries.md +++ b/doc/LLGO Migration for C C++ Third-Party Libraries.md @@ -267,7 +267,7 @@ Since the inih library does not have C++ style ordinary functions, we'll use an Ordinary functions can be directly linked using the corresponding symbol in the dylib. Translate C++ symbols to readable form in the dylib directory. ```bash -nm -gU $(brew --prefix inih)/lib/libINIReader.dylib -> output.txt +nm -gU $(brew --prefix inih)/lib/libINIReader.dylib > output.txt c++filt symbol.txt ```