Tassel

10.10.2 chrome crash 临时解决办法(触摸板可用)

  •  
  •   Tassel · Nov 30, 2014 · 4080 views
    This topic created in 4207 days ago, the information mentioned may be changed or developed.
    1) Open up text edit and paste this code - save it as "patch.m"

    #import <AppKit/AppKit.h>

    __attribute((constructor)) void Patch_10_10_2_entry()
    {
    NSLog(@"10.10.2 patch loaded");
    }

    @interface NSTouch ()
    - (id)_initWithPreviousTouch:(NSTouch *)touch newPhase:(NSTouchPhase)phase position:(CGPoint)position isResting:(BOOL)isResting force:(double)force;
    @end

    @implementation NSTouch (Patch_10_10_2)
    - (id)_initWithPreviousTouch:(NSTouch *)touch newPhase:(NSTouchPhase)phase position:(CGPoint)position isResting:(BOOL)isResting
    {
    return [self _initWithPreviousTouch:touch newPhase:phase position:position isResting:isResting force:0];
    }
    @end

    2) Run this command in Terminal

    clang -dynamiclib -framework AppKit ~/Desktop/patch.m -o ~/Desktop/patch.dylib

    3) Run this command in Terminal to open Chrome.

    env DYLD_INSERT_LIBRARIES=~/Desktop/patch.dylib "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"

    From Reddit: http://www.reddit.com/r/apple/comments/2n2b9c/os_x_10102_crashes_google_chrome/

    用3启动chrome,触摸板可用无crash.下次启动的话需要使用3,所以没有情况的话就不要退出chrome即可。
    1 replies    2014-11-30 20:10:27 +08:00
    hibersh
        1
    hibersh  
       Nov 30, 2014
    launchctl setenv DYLD_INSERT_LIBRARIES $HOME/Desktop/patch.dylib
    设个全局环境变量,启动更方便,其他有类似问题的App也好了
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   929 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 42ms · UTC 19:09 · PVG 03:09 · LAX 12:09 · JFK 15:09
    ♥ Do have faith in what you're doing.