我在Mac上安装fltk
时遇到了困难,我想继续Xcode 4
。下载文件并解压缩后尝试按照说明操作:
2.3 Configuring FLTK
-----------------------
Stay in your FLTK source-code directory. Type:
autoconf
Now configure your FLTK installation:
./configure
ADVANCED: type "./configure --help" to get a complete list of optional
configurations parameters. These should be pretty self-explanatory. Some
more details can be found in README.
To create Universal Binaries, start "configure" with these flags:
./configure --with-archflags="-arch i386 -arch ppc -arch x86_64"
:END_ADVANCED
首先,当我尝试运行autoconf
时,我得到:
-bash: autoconf: command not found.
./configure
命令,如dhcp-10-201-207-151:fltk-1.3 user$ ./configure
,我得到:
-bash: ./configure: No such file or directory.
我已经尝试过在网络上的许多教程,其中大多数已经过时,它对我不起作用。显然,还有另一种使用Macports安装它的方法,我也没有申请。
如果有人可以显示安装fltk
的步骤并以更简单的方式在Xcode
上运行,我会非常感激。
答案 0 :(得分:3)
您不需要使用autoconf或您提到的选项。 如果你安装了Xcode 4和Command Line Tools,你可以在OS X上编译FLTK:
./configure CC=clang CXX=clang++
make
sudo make install
至少那对我来说很好......
我也使用Xcode在OS X上构建它,但是你必须转到
fltk-1.3.2/ide/Xcode4
目录,用Xcode打开FLTK.xcodeproj文件,然后选择“Demo”作为构建目标和“Build for Archive”。然后,您可以根据需要手动将文件移动到/ usr / local /,或者作为/ Library / Frameworks中的框架。
我会选择选项1.