我正在尝试将我的二进制文件打包在一个简约的应用程序包中。但是我看到结果出现了一些奇怪的行为。
我的包有这个最小的结构:
$ ls -R HelloWorld.app
Contents
HelloWorld.app/Contents:
Info.plist MacOS PkgInfo
HelloWorld.app/Contents/MacOS:
helloworld
helloworld 是一个 C 二进制文件,编译自:
#include <stdio.h>
#include <unistd.h>
int main(int argc, char **argv) {
while (1) {
printf("Hello world!\n");
sleep(2);
}
return 0;
}
Info.plist 包含:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>helloworld</string>
<key>CFBundleIdentifier</key>
<string>com.litl.helloworld</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>HelloWorld</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<key>CFBundleVersion</key>
<string>20</string>
<key>LSMinimumSystemVersion</key>
<string>10.6</string>
<key>LSUIElement</key>
<true/>
<key>LSBackgroundOnly</key>
<true/>
</dict>
</plist>
现在是奇怪的行为。当我跑
open ./HelloWorld.app
该命令挂起大约 30 秒。之后,我可以确认 helloworld 二进制文件正在运行。但是,它的标准输出不会显示在 Console.app 中。如果我以编程方式启动此捆绑包(NSWorkspace sharedWorkspace] launchApplicationAtURL...),则调用成功,但二进制文件立即退出(我可以在控制台中看到它以错误代码 2 退出)。
这是在 OS X 10.9.2 上。
我究竟做错了什么?