在 AIX 中使用 64 位 Informix CSDK 和 gcc?
我认为不支持此配置(也许根本不支持 gcc),因为 esql 脚本仅使用 xlc 选项。
但我想知道其他人是否在 AIX 中使用此配置 gcc 和 informix 64 位。
I don't think this configuration is supported (maybe gcc isn't supported at all) because the esql script uses xlc options only.
But I want to know if other people are using this configuration gcc and informix 64 bits in AIX.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以让 ESQL/C(ClientSDK 或 CSDK 的一部分)来使用 GCC,但这并非完全微不足道。 原则上,我所做的是:
如果您只想使用 GCC,那么这就足够了。 如果您想同时使用 GCC,有时还想使用 XLC(本机编译器),那就更难了。
我的私有 bin 目录中有一个名为 esql 的脚本(它始终位于我的 PATH 中,位于 $INFORMIXDIR/bin 等内容之前)。 它确定我当前使用的 ESQL/C 版本,并运行存储在单独目录中的适当的预修补版本。 它会自动为我创建该脚本的新版本,因此如果我一分钟使用 CSDK 3.00.UC2,然后下一分钟使用 CSDK 3.50.FC3,它会自动处理切换。
这是应用于 Solaris 上的 ESQL/C 3.50 的补丁 - 您需要将其调整到 AIX。
让我知道您是否需要我使用的控制
esql
脚本(请参阅我的个人资料)。 我有 9 个 32 位脚本和 8 个 64 位脚本,由一组 12 个不同的补丁文件创建(恐怕全部都是针对 Solaris 的)。 版本范围从 ESQL/C 5.20(适用于 OnLine 5.20)到 ESQL/C 7.2x(官方早已失效)再到各种版本的 CSDK。You can get ESQL/C (a part of ClientSDK or CSDK) to use GCC, but it isn't completely trivial. In principle, what I do is:
If you only want to use GCC, then this is sufficient. If you want to use both GCC and sometimes XLC (the native compiler), then it is harder.
I have a single script called esql in my private bin directory (which is always on my PATH ahead of things like $INFORMIXDIR/bin). It works out which version of ESQL/C I'm currently using, and runs the appropriate pre-patched version which is stored in a separate directory. And it automatically creates new versions of that script for me so if I work with CSDK 3.00.UC2 one minute and then CSDK 3.50.FC3 the next, it handles the switchover automatically.
Here's the patch applied to ESQL/C 3.50 on Solaris - you'll need to adapt it to AIX.
Lemme know if you want the controlling
esql
script that I use (see my profile). I have 9 32-bit scripts and 8 64-bit scripts, created by a set of 12 different patch files (all for Solaris, I'm afraid). The versions range from ESQL/C 5.20 (for OnLine 5.20) via ESQL/C 7.2x (long dead officially) through various versions of CSDK.