2017-10-13 130 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修復。

正如您的鏈接所示,該問題會影響許多其他軟件包,而不僅僅是野牛。這並沒有多少安慰。

相關問題