2

我正在尝试在 Mac OS X(10.8)上编译 MySQL(在我的情况下为 5.5.29)但不能。我正在尝试按照MySQL 上的说明进行操作,但它们似乎仅适用于 Linux 和 Win,这就是发生的情况:

cmake . -G Xcode
-- Running cmake version 2.8.11.1
-- MySQL 5.5.29
-- [A lot of looking up and checking]
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/name/mysql-5.5.29

make
make: *** No targets specified and no makefile found.  Stop.

使用 CMake 2.8.11 和 GNU Make 3.81。我不确定我做对了,任何想法都非常受欢迎。

4

1 回答 1

2

如果你想用 make 编译,为什么要使用 Xcode 生成器?如果您使用 Xcode 生成器,则不会编写任何 makefile:您需要使用 Xcode 进行编译。

如果您想使用 make 进行编译,请尝试使用 makefile 生成器。

于 2013-06-22T00:10:38.517 回答