PackageMaker 区分 PPC 和 Intel

发布于 2024-11-03 00:42:46 字数 164 浏览 4 评论 0原文

好的,所以,我正在为 Mac OS X 制作一个安装程序包。我让它将驱动程序文件放置到系统上,但没有通用版本的驱动程序。如何让安装程序根据计算机是 PowerPC 还是 Intel 来放置不同的文件?我检查了“要求”,但最接近的要求是要求某些处理器速度或 Mac OS X 版本号。有没有办法也要求某些架构?谢谢。

Okay, so, I'm making an installer package for Mac OS X. I have it place a driver file onto the system, but there's no Universal version of the driver. How can I make the Installer drop a different file depending on whether the computer is a PowerPC or and Intel? I checked the "Requirements" but the closest it would let me get is to require certain processor speeds or Mac OS X version numbers. Is there a way to require certain architectures as well? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃素的狼 2024-11-10 00:42:46

将 Sysctl 的结果与 hw.cputype 结合使用(PPC = 18 且 Intel = 7)。

Sysctl 结果

CPU 类型:

#define CPU_TYPE_MC680x0   ((cpu_type_t) 6)
#define CPU_TYPE_X86       ((cpu_type_t) 7)
#define CPU_TYPE_MC98000   ((cpu_type_t) 10)
#define CPU_TYPE_HPPA      ((cpu_type_t) 11)
#define CPU_TYPE_ARM       ((cpu_type_t) 12)
#define CPU_TYPE_MC88000   ((cpu_type_t) 13)
#define CPU_TYPE_SPARC     ((cpu_type_t) 14)
#define CPU_TYPE_I860      ((cpu_type_t) 15)
#define CPU_TYPE_POWERPC   ((cpu_type_t) 18)

Use Result of Sysctl with hw.cputype (PPC = 18 and Intel = 7).

Result of Sysctl

CPU types:

#define CPU_TYPE_MC680x0   ((cpu_type_t) 6)
#define CPU_TYPE_X86       ((cpu_type_t) 7)
#define CPU_TYPE_MC98000   ((cpu_type_t) 10)
#define CPU_TYPE_HPPA      ((cpu_type_t) 11)
#define CPU_TYPE_ARM       ((cpu_type_t) 12)
#define CPU_TYPE_MC88000   ((cpu_type_t) 13)
#define CPU_TYPE_SPARC     ((cpu_type_t) 14)
#define CPU_TYPE_I860      ((cpu_type_t) 15)
#define CPU_TYPE_POWERPC   ((cpu_type_t) 18)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文