summaryrefslogtreecommitdiff
path: root/gnu/packages/assembly.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/assembly.scm')
-rw-r--r--gnu/packages/assembly.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 03a868690c5..104e61f63fb 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -553,3 +553,34 @@ family of command line utility wrappers in the default output. Each of the cli
553tools is named like @code{xed*}. Documentation for the cli tools is sparse, so 553tools is named like @code{xed*}. Documentation for the cli tools is sparse, so
554this is a case where ``the code is the documentation.''") 554this is a case where ``the code is the documentation.''")
555 (license license:asl2.0))) 555 (license license:asl2.0)))
556
557(define-public neon2sse
558 (let ((commit "097a5ecacd527d5b5c3006e360fb9cb1c1c48a1f")
559 (version "0")
560 (revision "1"))
561 (package
562 (name "neon2sse")
563 (version (git-version version revision commit))
564 (source (origin
565 (method git-fetch)
566 (uri (git-reference
567 (url "https://github.com/intel/ARM_NEON_2_x86_SSE")
568 (commit commit)))
569 (file-name (git-file-name name version))
570 (sha256
571 (base32
572 "17mf788b8asrvjl6dnyzrm5xrz20wx9j5f8n6drgc6qgwqxpx4hv"))))
573 (build-system cmake-build-system)
574 (arguments
575 (list #:tests? #f)) ;no tests
576 (home-page "https://github.com/intel/ARM_NEON_2_x86_SSE")
577 (synopsis "Header file to simplify ARM->IA32 porting")
578 (description
579 "The @file{NEON_2_SSE.h} file is intended to simplify ARM-to-IA32
580porting. It makes the correspondence (or a real porting) of ARM NEON
581intrinsics as defined in the @file{arm_neon.h} header and x86 SSE (up to
582SSE4.2) intrinsic functions as defined in corresponding x86 compilers headers
583files.")
584 (license license:bsd-2))))
585
586