fix: wrong llvm libs flag

This commit is contained in:
Li Jie
2024-11-26 16:08:29 +08:00
parent e93d57983e
commit 97f72b93e1

View File

@@ -19,7 +19,7 @@ package llvm
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
const ( const (
LLGoPackage = "link: -L$(llvm-config --libs) $(llvm-config --ldflags); -lLLVM" LLGoPackage = "link: $(llvm-config --libs) $(llvm-config --ldflags); -lLLVM"
) )
// StringView represents a C++ std::string_view object. // StringView represents a C++ std::string_view object.