From 4cf8ad2bee058e98aaa49fbc36fb24ae220e78d0 Mon Sep 17 00:00:00 2001 From: ZauberNerd Date: Thu, 10 Mar 2022 18:32:23 +0000 Subject: [PATCH] Update libclang installation comment to libclang-13-dev Tinygo bumped the default llvm version to v13 in: tinygo-org/tinygo@3a4e0c9 --- cgo/libclang.go | 2 +- cgo/libclang_stubs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cgo/libclang.go b/cgo/libclang.go index 357bfd52..5a11601b 100644 --- a/cgo/libclang.go +++ b/cgo/libclang.go @@ -16,7 +16,7 @@ import ( ) /* -#include // if this fails, install libclang-11-dev +#include // if this fails, install libclang-13-dev #include #include diff --git a/cgo/libclang_stubs.c b/cgo/libclang_stubs.c index ce9e164a..f06eb2c3 100644 --- a/cgo/libclang_stubs.c +++ b/cgo/libclang_stubs.c @@ -3,7 +3,7 @@ // are slightly different from the ones defined in libclang.go, but they // should be ABI compatible. -#include // if this fails, install libclang-11-dev +#include // if this fails, install libclang-13-dev CXCursor tinygo_clang_getTranslationUnitCursor(CXTranslationUnit tu) { return clang_getTranslationUnitCursor(tu);