2017-10-13 157 views
2

随着macOS从10.12更新到10.13,/ usr/local/bin/bison停止工作。bison 3.0.4在非法指令中失败:4在macOS上高Sierra 10.13

问题:

$ /usr/local/bin/bison --version 
Illegal instruction: 4 

重建野牛的尝试也失败并LLDB报告EXC_BAD_INSTRUCTION。

$ lldb src/bison 
(lldb) target create "src/bison" 
Current executable set to 'src/bison' (x86_64). 
(lldb) run 
Process 25732 launched: '/Users/xxxx/src/bison/bison-3.0.4/src/bison' (x86_64) 
Process 25732 stopped 
* thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0) 
    frame #0: 0x00007fff68e39a23 libsystem_c.dylib`__vfprintf + 16437 
libsystem_c.dylib`__vfprintf: 
-> 0x7fff68e39a23 <+16437>: ud2  
    0x7fff68e39a25 <+16439>: nopl (%rax) 
    0x7fff68e39a28 <+16442>: retq 
Target 0: (bison) stopped. 
(lldb) bt 
* thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0) 
    * frame #0: 0x00007fff68e39a23 libsystem_c.dylib`__vfprintf + 16437 
    frame #1: 0x00007fff68e5e0a9 libsystem_c.dylib`__v2printf + 473 
    frame #2: 0x00007fff68e434c7 libsystem_c.dylib`_vsnprintf + 415 
    frame #3: 0x00007fff68e43524 libsystem_c.dylib`vsnprintf_l + 41 
    frame #4: 0x00007fff68e344ec libsystem_c.dylib`snprintf + 180 
    frame #5: 0x00000001000465a8 bison`vasnprintf(resultbuf=<unavailable>, lengthp=<unavailable>, format=<unavailable>, args=<unavailable>) at vasnprintf.c:0 [opt] 
    frame #6: 0x0000000100042916 bison`rpl_fprintf(fp=0x00007fffa211d240, format=<unavailable>) at fprintf.c:45 [opt] 
    frame #7: 0x0000000100042532 bison`error(status=0, errnum=0, message="%s: missing operand") at error.c:315 [opt] 
    frame #8: 0x0000000100008301 bison`getargs(argc=1, argv=0x00007ffeefbff8c0) at getargs.c:0 [opt] 
    frame #9: 0x000000010000d70a bison`main(argc=1, argv=0x00007ffeefbff8c0) at main.c:81 [opt] 
    frame #10: 0x00007fff68da2145 libdyld.dylib`start + 1 

解决方法: 如果你使用Xcode的9,其gcc版本可能是苹果LLVM 9.0.0版。通过将(defined __APPLE__ && __clang_major__ >= 9)添加到野牛源文件中的#if宏来应用补丁。然后重建并重新安装它。

$ diff -u lib/vasnprintf.c.original lib/vasnprintf.c 
--- lib/vasnprintf.c.original 2015-01-05 01:46:03.000000000 +0900 
+++ lib/vasnprintf.c 2017-10-13 16:38:49.000000000 +0900 
@@ -4858,7 +4858,7 @@ 
#endif 
        *fbp = dp->conversion; 
#if USE_SNPRINTF 
-# if !(((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined __UCLIBC__) || ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) 
+# if !((defined __APPLE__ && __clang_major__ >= 9) || ((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined __UCLIBC__) || ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) 
       fbp[1] = '%'; 
       fbp[2] = 'n'; 
       fbp[3] = '\0'; 

参考文献: https://github.com/Homebrew/homebrew-core/issues/14418

查找关键字野牛和%N。

在修补过的代码行的源代码中阅读注释。

如果您知道更可靠的解决方案,请告诉我们。谢谢!

回答

2

这个bug在2017年9月16日发布在bug-bison上,根据当天晚些时候由野牛维护者回复的情况,此后很快更新了野牛源库以解决该问题。但是,并未创建新的源代码分发。为了使用此修复程序,需要与分支Bison Git repository同步,该分支包含更新版本的gnulib。 (我相信,从maint分支构建并不像只是下载源代码tarball那么简单,所以这并不完全令人满意。在发布新的bison源代码之前,您指出的修补程序可能是最简单的选择。)

在bug-gnulib消息linked from the bison bug report中描述了gnulib修复。

正如您的链接所示,该问题会影响许多其他软件包,而不仅仅是野牛。这并没有多少安慰。

相关问题