在Mac OS X上运行ddd

9

我尝试使用以下命令安装并运行ddd:

brew install libtool
brew link lesstif
brew install ddd

尝试运行ddd时,收到以下错误消息:
cd@new-host:~$ ddd
dyld: Library not loaded: /opt/X11/lib/libSM.6.dylib
Referenced from: /usr/local/lib/libXm.2.dylib
Reason: image not found
Trace/BPT trap: 5

以下是我的brew config输出内容:
HOMEBREW_VERSION: 0.9.5
ORIGIN: https://github.com/Homebrew/homebrew
HEAD: 7a427a6528c0aa123a43d3adf1c5944ab622c27e
Last commit: 2 hours ago
HOMEBREW_PREFIX: /usr/local
HOMEBREW_CELLAR: /usr/local/Cellar
CPU: dual-core 64-bit penryn
OS X: 10.7.5-i386
Xcode: 4.6.3
CLT: 4.6.0.0.1.1365549073
LLVM-GCC: build 2336
Clang: 4.2 build 425
X11: 2.6.5 => /usr/X11
System Ruby: 1.8.7-358
Perl: /usr/bin/perl
Python: /usr/bin/python
Ruby: /usr/bin/ruby => /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby

以下是我从brew doctor输出的内容:
Warning: Some directories in /usr/local/share/man aren't writable. This can happen if you "sudo make install" software that isn't managed by Homebrew. If a brew tries to add locale information to one of these directories, then the install will fail during the link step. You should probably chown them:

/usr/local/share/man/de
/usr/local/share/man/de/man1
/usr/local/share/man/mann

Warning: Unbrewed dylibs were found in /usr/local/lib. If you didn't put them there on purpose they could cause problems when building Homebrew formulae, and may need to be deleted.

Unexpected dylibs:

/usr/local/lib/libtcl8.6.dylib
/usr/local/lib/libtk8.6.dylib

Warning: Unbrewed header files were found in /usr/local/include. If you didn't put them there on purpose they could cause problems when building Homebrew formulae, and may need to be deleted.

Unexpected header files:

/usr/local/include/fakemysql.h
/usr/local/include/fakepq.h
/usr/local/include/fakesql.h
/usr/local/include/itcl.h
/usr/local/include/itcl2TclOO.h
/usr/local/include/itclDecls.h
/usr/local/include/itclInt.h
/usr/local/include/itclIntDecls.h
/usr/local/include/itclMigrate2TclCore.h
/usr/local/include/itclTclIntStubsFcn.h
/usr/local/include/mysqlStubs.h
/usr/local/include/odbcStubs.h
/usr/local/include/pqStubs.h
/usr/local/include/tcl.h
/usr/local/include/tclDecls.h
/usr/local/include/tclOO.h
/usr/local/include/tclOODecls.h
/usr/local/include/tclPlatDecls.h
/usr/local/include/tclThread.h
/usr/local/include/tclTomMath.h
/usr/local/include/tclTomMathDecls.h
/usr/local/include/tdbc.h
/usr/local/include/tdbcDecls.h
/usr/local/include/tdbcInt.h
/usr/local/include/tk.h
/usr/local/include/tkDecls.h
/usr/local/include/tkPlatDecls.h

Warning: Unbrewed .pc files were found in /usr/local/lib/pkgconfig. If you didn't put them there on purpose they could cause problems when building Homebrew formulae, and may need to be deleted.

Unexpected .pc files:

/usr/local/lib/pkgconfig/tcl.pc
/usr/local/lib/pkgconfig/tk.pc

Warning: Unbrewed static libraries were found in /usr/local/lib. If you didn't put them there on purpose they could cause problems when building Homebrew formulae, and may need to be deleted.

Unexpected static libraries:

/usr/local/lib/libtclstub8.6.a
/usr/local/lib/libtkstub8.6.a

Warning: /usr/bin occurs before /usr/local/bin This means that system-provided programs will be used instead of those provided by Homebrew. The following tools exist at both paths:

dot

Consider setting your PATH so that /usr/local/bin occurs before /usr/bin. Here is a one-liner:

echo export PATH='/usr/local/bin:$PATH' >> ~/.bash_profile 

这些brew doctor警告是否需要我尝试纠正?我的其他所有brew安装程序都没问题,所以有点不愿意开始搞那些文件。谢谢!

编辑:在macOS 10.14.4上,我收到了这个错误:
Jamess-MacBook-Air:haskell-usaco james$ ddd
Error: Unresolved inheritance operation

Xt error (Unresolved inheritance operation).

Oops!  You have found a bug in DDD.

If you can reproduce this bug, please send a bug report
to <ddd@gnu.org>, giving a subject like

    DDD 3.3.12 (i386-apple-darwin18.0.0) gets Xt error

使用LLDB启动DDD时,会打印出以下错误信息:

XIO:  fatal IO error 35 (Resource temporarily unavailable) on X server "/private/tmp/com.apple.launchd.cxF3NWNYqR/org.macosforge.xquartz:0"
      after 5 requests (5 known processed) with 0 events remaining

X11已经从Homebrew和XQuartz网站都安装了。

2个回答

4
我认为Mac OS X 10.7.5附带了XQuartz(只有10.8及以上版本不随安装程序提供)。
以下是最终对我起作用的内容:
非Homebrew安装的dylibs、头文件、.pc文件和静态库被放置在那里,因此我使用以下命令卸载了R:
rm -rf /Library/Frameworks/R.framework /Applications/R.app \
/usr/bin/R /usr/bin/Rscript

然后我卸载了ddd,取消了lesstif的链接,并卸载了lesstif:

brew uninstall ddd
brew unlink lesstif
brew uninstall lesstif

接下来,我安装了tcl-tk:

brew tap homebrew/dupes
brew install tcl-tk

然后我使用brew install从源代码构建了lesstif:

brew install --build-from-source lesstif

我重新链接了lesstif:

brew unlink lesstif && brew link lesstif

最后,我安装了ddd:

brew install ddd

这个方法起作用了!我不确定这些步骤中哪一个是关键步骤,但我猜想可能是:

brew install --build-from-source lesstif

我仍然不确定这两个有什么不同:

brew install --build-from-source lesstif
brew install lesstif

我也查找了以下目录和文件:
/opt/X11/lib/libSM.6.dylib exist

但它们在我的电脑上不存在。
@new-host:~$ cd ~
@new-host:~$ cd /opt
-bash: cd: /opt: No such file or directory

相反,我在这里找到了X11文件:

@new-host:/usr/X11$ cd ~
@new-host:~$ cd /usr/X11/lib
@new-host:/usr/X11/lib$ ls
...
libSM.6.dylib
...

我认为我可以使用某种符号链接来解决这个问题,但不是完全确定。

最后,那些未经brew安装的dylibs、头文件、.pc文件和静态库是由非homebrew安装的R放置在那里的。但我不确定是否有任何安全的方法可以将它们删除,以消除brew doctor的警告。(我可能必须忍受它们)。

R安装包括三个苹果软件包:

org.r-project.R.x86_64.fw.pkg
org.r-project.R.x86_64.GUI.pkg
org.r-project.x86_64.tcltk.x11

根据 R 网站(http://cran.r-project.org/doc/manuals/r-release/R-admin.html#Uninstalling-under-OS-X)的说明:您可以使用pkgutil --unlink(不支持 Lion 或更高版本)来删除其文件,或者使用pkgutil --forget让苹果安装程序忘记该软件包而不删除其文件(在并行安装多个 R 版本时对于 R 框架很有用),或者在删除文件后进行此操作。
卸载安装在 /usr/local 下的 Tcl/Tk 组件并不简单。您可以通过终端列出它安装的文件。
pkgutil --files org.r-project.x86_64.tcltk.x11

对我来说,那个删除操作有点吓人,所以我会接受 brew doctor 的警告并继续使用。很高兴最终能够成功运行 ddd

1

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接