29

重申一下,我正在运行第一个 OS X 10.10 测试版,并尝试使用 Homebrew 重新安装 MongoDB。

运行后$ brew install mongodb,输出如下:

==> Downloading http://downloads.mongodb.org/src/mongodb-src-r2.6.1.tar.gz
==> /usr/local/opt/scons/bin/scons install --prefix=/usr/local/Cellar/mongodb/2.6.1 -j8 --cc=/usr/bin/clang --cxx=/usr/bin/clang++ --osx-version-min=10.10 --full --64
scons: Reading SConscript files ...
Mkdir(".scons/Darwin/nohost")
usage: scons [OPTION] [TARGET] ...

SCons Error: option --osx-version-min: invalid choice: '10.10' (choose from '10.6', '10.7', '10.8', '10.9')

显然安装包没有为 10.10 配置,因为它还没有向公众发布。

有没有办法在构建过程中手动绕过这个?

4

4 回答 4

88

这可能会在较新版本的 MongoDB ( https://jira.mongodb.org/browse/SERVER-14204 ) 中得到修复,现在只需修补公式即可。

brew edit mongodb

找到如下所示的块:

args = %W[
  --prefix=#{prefix}
  -j#{ENV.make_jobs}
  --cc=#{ENV.cc}
  --cxx=#{ENV.cxx}
  --osx-version-min=#{MacOS.version}
]

并将 OS X 版本 min 更改为 10.9,如下所示:

args = %W[
  --prefix=#{prefix}
  -j#{ENV.make_jobs}
  --cc=#{ENV.cc}
  --cxx=#{ENV.cxx}
  --osx-version-min=10.9
]

编辑:DP3、DP4、PB1 的额外步骤

仍在文件中,在 . 上方添加以下 3 行def install

  def patches
    { :p1 => 'https://gist.githubusercontent.com/LinusU/a1771562fec0201c54cd/raw/98825f9fbe93b8cc524e05a9c0e99864e8301731/mongodb.diff' }
  end

然后执行升级:

brew upgrade mongodb
于 2014-06-13T13:41:15.303 回答
4

顺便提一下——这个问题已经解决了。
今天(2014 年 10 月 13 日)通过以下方式建造和安装$ brew install mongodb

==> Summary
  /usr/local/Cellar/mongodb/2.6.5: 17 files, 331M, built in 21.6 minutes
于 2014-10-13T20:58:34.667 回答
3

如果 Linus 描述的步骤还不够,请执行附加步骤(10.10 beta 3 和 beta 4):

  1. cd /图书馆/缓存/自制/
  2. tar xvfz mongodb-2.6.3.tar.gz
  3. cd mongodb-src-r2.6.3
  4. vi src/third_party/s2/util/endian/endian.h
  5. 取消注释第 181-189 行

    // This one is safe to take as it's an extension
    //#define htonll(x) ghtonll(x)
    //
    // ntoh* and hton* are the same thing for any size and bytesex,
    // since the function is an involution, i.e., its own inverse.
    //#define gntohl(x) ghtonl(x)
    //#define gntohs(x) ghtons(x)
    //#define gntohll(x) ghtonll(x)
    //#define ntohll(x) htonll(x)
    
  6. 光盘..
  7. rm mongodb-2.6.3.tar.gz
  8. tar cvfz mongodb-2.6.3.tar.gz mongodb-src-r2.6.3
  9. 冲泡安装mongodb

    ==> Downloading http://downloads.mongodb.org/src/mongodb-src-r2.6.3.tar.gz
    Already downloaded: /Library/Caches/Homebrew/mongodb-2.6.3.tar.gz
    Error: SHA1 mismatch
    Expected: 226ab45e3a2e4d4a749271f1bce393ea8358d3dd
    Actual: 593bbe9cb7e0b1d2368b3b6487893e8ba459acfb
    Archive: /Library/Caches/Homebrew/mongodb-2.6.3.tar.gz
    
  10. 复制实际的 SHA1
  11. 酿造编辑mongodb
  12. 将预期的 SHA1 值替换为实际值。
  13. 冲泡安装mongodb
  14. rm -rf mongodb-src-r2.6.3
于 2014-07-22T10:37:59.080 回答
1

好像有人建议打补丁。但我真的没有任何信息 - https://groups.google.com/forum/#!topic/mongodb-user/KToczUct6BE

我希望看到它也能正常工作。

于 2014-06-05T06:47:27.343 回答