You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix ARM64 assembly (minio#19)
The wrong constants were used for ARM64, leading to wrong values being calculated.
This is likely due to a linker change or similar.
* Rename to less generic names.
* Use textflag.h
* Apply asmfmt
Fixesminio#17
* Re-enable asm...
add build directive to honor noasm build tag (minio#16)
This commit adds a build directive to honor the
`noasm` build tag and fixes the build tag directives
to behave as logical AND instead of OR. Now, it is
possible to opt-out of building and using any
platform-specific asm code.
Further, this commit removes the travis CI configuration
and switches to Github Actions.