admin管理员组文章数量:1344596
I'm trying to use the go_ibm_db Golang driver to connect to an IBM DB2 Warehouse from my macOS machine. However, when I try to build my Go application, I get the following error:
# github/ibmdb/go_ibm_db/api
../api/zapi_unix.go:22:11: fatal error: 'sqlcli1.h' file not found
#include <sqlcli1.h>
^~~~~~~~~~~
1 error generated.
It seems like the driver is expecting the sqlcli1.h header file, but it's missing. I'm on macOS and unsure how to install or point to the necessary DB2 CLI headers/libraries.
Has anyone successfully used this driver on macOS? Any tips on resolving this error would be appreciated.
I'm trying to use the go_ibm_db Golang driver to connect to an IBM DB2 Warehouse from my macOS machine. However, when I try to build my Go application, I get the following error:
# github/ibmdb/go_ibm_db/api
../api/zapi_unix.go:22:11: fatal error: 'sqlcli1.h' file not found
#include <sqlcli1.h>
^~~~~~~~~~~
1 error generated.
It seems like the driver is expecting the sqlcli1.h header file, but it's missing. I'm on macOS and unsure how to install or point to the necessary DB2 CLI headers/libraries.
Has anyone successfully used this driver on macOS? Any tips on resolving this error would be appreciated.
Share Improve this question asked yesterday GiloGilo 7286 silver badges33 bronze badges1 Answer
Reset to default 0The documentation seems complete , regarding the necessary environment variables to export.
Follow the instructions under "How to Install in Linux/Mac" on this page https://github/ibmdb/go_ibm_db (which details the environment variables you must export that point to clidriver directory).
Ensure that your system meets all the pre-requisuites detailed on that page. The go_ibm_db version should be 0.5.2 or higher because that supports the v12.1 clidriver which is the first version that has native macos arm64 support.
Alternatively you can follow the section 3 "Go_ibm_db installation on MacOS x64 and arm64 Systems" on this page
https://github/ibmdb/go_ibm_db/blob/master/INSTALL.md#insmac
本文标签: goHow to resolve 39sqlcli1h39 file not found when using goibmdb on macOSStack Overflow
版权声明:本文标题:go - How to resolve 'sqlcli1.h' file not found when using go_ibm_db on macOS? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743802403a2541559.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论