2016-04-03 144 views
5

它基本上和this one一样没有真正结束。Alien :: wxWidgets在OSX上安装失败10

我面临同样的问题,我走得更远一点。我不得不更改代码以允许更新的Macos sdk(10.11)。因此,编制了一段时间,但此后未能蒙山这样的:

❯❯❯ perl build 
Building Alien-wxWidgets 
/Users/guiohm/.cpan/build/Alien-wxWidgets-0.67-rVjMTK/wxWidgets-3.0.2/bld/bk-deps clang -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -c -o wxtiff_tif_lzma.o -DNDEBUG -I../src/jpeg -I/Users/guiohm/.cpan/build/Alien-wxWidgets-0.67-rVjMTK/wxWidgets-3.0.2/bld/src/tiff/libtiff -I../src/tiff/libtiff -dynamic -fPIC -DPIC -D_FILE_OFFSET_BITS=64 -I/Users/guiohm/.cpan/build/Alien-wxWidgets-0.67-rVjMTK/wxWidgets-3.0.2/bld/lib/wx/include/osx_cocoa-unicode-3.0 -I../include -Wall -Wundef -O2 -fno-strict-aliasing -fno-common ../src/tiff/libtiff/tif_lzma.c 
../src/tiff/libtiff/tif_lzma.c:38:10: fatal error: 'lzma.h' file not found 
#include "lzma.h" 
     ^
1 error generated. 
make: *** [wxtiff_tif_lzma.o] Error 1 
system: make all: 512 at build line 68. 

❯❯❯ brew search 
lzma is now part of the xz formula. 

❯❯❯ brew info 
xz: stable 5.2.2 (bottled) 
General-purpose data compression with high compression ratio 
http://tukaani.org/xz/ 
/usr/local/Cellar/xz/5.2.2 (91 files, 1.4M) * 
    Poured from bottle 
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/xz.rb 
==> Options 
--universal 
    Build a universal binary 

❯❯❯ brew install xz 
Warning: xz-5.2.2 already installed 

❯❯❯ find/-name "lzma.h" 
/usr/local/Cellar/xz/5.2.2/include/lzma.h 
/usr/local/include/lzma.h 

❯❯❯ ll /usr/local/include/lzm* 
lrwxr-xr-x 1 guiohm admin 31 Oct 11 15:58 /usr/local/include/lzma -> ../Cellar/xz/5.2.2/include/lzma 
lrwxr-xr-x 1 guiohm admin 33 Oct 11 15:58 /usr/local/include/lzma.h -> ../Cellar/xz/5.2.2/include/lzma.h 

奇怪的是,当我检查的配置日志: 这一个(./wxWidgets-3.0.2/bld/src/tiff/config.log)具有其他错误比LZMA,例如:

configure:18047: checking for lzma_code in -llzma 
configure:18072: clang -o conftest -g -O2 -Wall -W -stdlib=libc++ conftest.c -llzma -ljpeg -lz >&5 
configure:18072: $? = 0 
configure:18081: result: yes 
configure:18096: checking lzma.h usability 
configure:18096: clang -c -g -O2 -Wall -W conftest.c >&5 
configure:18096: $? = 0 
configure:18096: result: yes 
configure:18096: checking lzma.h presence 
configure:18096: clang -E conftest.c 
configure:18096: $? = 0 
configure:18096: result: yes 
configure:18096: checking for lzma.h 
configure:18096: result: yes 
configure:18199: checking for X 
configure:18307: clang -E conftest.c 
conftest.c:89:10: fatal error: 'X11/Xlib.h' file not found 
#include <X11/Xlib.h> 
     ^
1 error generated. 
configure:18307: $? = 1 
configure: failed program was: 
| /* confdefs.h */ 
| #define PACKAGE_NAME "LibTIFF Software" 
| #define PACKAGE_TARNAME "tiff" 

See the full version

回答与./wxWidgets-3.0.2/bld/config.log差不多。

当我更改代码以允许os10.10 SDK时,它以前预计高达10.8或10.9。我想现在整个问题都来自这个问题。 我应该试图抓取一个旧的MacOS SDK吗?

基本上,我只是想从源码编译Slic3r --gui,它需要Wx,它需要wxwidgets。

+0

这里是全'/ wxWidgets的-3.0.2/BLD/config.log':http://pastebin.com/raw/6d3zBSbj – guiohm

+0

奇怪的,你可以尝试编译wxWidgets的手动,即没有自动化?只要做../configure && make && make install即可。 – Igor

+1

'brew卸载xz'为我解决了它。来源:https://bugs.launchpad.net/kicad/+bug/1285317 – bits

回答

2

这里的问题是,配置的libtiff检测lzma.h/usr/local下,因为它不使用-isysroot,但它确实编译,因为SDK的选项,并没有找到它。正确的做法是在wxWidgets配置中明确使用-I/usr/local/include,但现在您应该能够通过执行export CPATH=/usr/local/include LIBRARY_PATH=/usr/local/lib来避开它。

另外(和恕我直言,最好),做brew install tiff jpeg png(不知道公式名称是否正确,请检查它们),以避免首先建立这些库的内置版本。