From ef9aba38535cb6ee20110711df9377e00f3d6088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E7=BA=A2=E5=B2=A9?= Date: Wed, 2 Oct 2024 19:40:14 +0800 Subject: [PATCH] Fix: LoadLibrary liblcl ERROR --- cef/init.go | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/cef/init.go b/cef/init.go index 644fed61..580c6850 100644 --- a/cef/init.go +++ b/cef/init.go @@ -29,11 +29,12 @@ import ( ) // GlobalInit 全局初始化 -// 需要手动调用的函数,在main函数中调用 -// 参数: -// libs 内置到应用程序的类库 -// resources 内置到应用程序的资源文件 -// MacOSX环境, goland、ide等开发环境需配置命令行参数[energy_env=dev]以保证应用正常运行 +// +// 需要手动调用的函数,在main函数中调用 +// 参数: +// libs 内置到应用程序的类库 +// resources 内置到应用程序的资源文件 +// MacOSX环境, goland、ide等开发环境需配置命令行参数[energy_env=dev]以保证应用正常运行 func GlobalInit(libs emfs.IEmbedFS, resources emfs.IEmbedFS) { if IsDarwin() { macapp.MacApp.IsCEF(true) @@ -76,6 +77,9 @@ func GlobalInit(libs emfs.IEmbedFS, resources emfs.IEmbedFS) { liblcl, err = dllimports.NewDLL(libname.LibName) } if liblcl == 0 { + if err != nil { + println("LoadLibrary liblcl ERROR:", err.Error()) + } panic(`Hint: Golcl dependency library liblcl was not found Please check whether liblcl exists locally