Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stb_image: Give up trying to runtime-detect SSE2 on GCC. #428

Merged
merged 1 commit into from
Mar 19, 2017

Commits on Mar 5, 2017

  1. stb_image: Give up trying to runtime-detect SSE2 on GCC.

    We tried but it was nothing but trouble. New rule: with
    GCC/Clang, if you're compiling with -msse2, you get always-on
    SSE2 code, otherwise you don't get any. Trying to ship
    anything with proper runtime dispatch requires both working
    around certain bugs and some fiddling with build settings,
    which runs contrary to the intent of a one-file library,
    so bail on it entirely.
    
    Fixes issue nothings#280.
    Fixes issue nothings#410.
    rygorous committed Mar 5, 2017
    Configuration menu
    Copy the full SHA
    3e17544 View commit details
    Browse the repository at this point in the history