Skip to content

no longer builds for any architecture except x86 #18

Description

@infinity0

Commit 8de2315 broke the build for all non-x86 architectures. The offending code is this:

#ifndef __SSE_MATH__
    __asm__ __volatile__ ( "emms");
#endif

Changing it to

#ifdef __MMX__
    __asm__ __volatile__ ( "emms");
#endif

(similar to how things are done in alg.c) restores the build for all platforms.

I have added this to pull request #16.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions