10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-04 18:35:50 +02:00
QCaml/common
2020-12-26 01:47:55 +01:00
..
lib Added org-mode files in common 2020-12-26 01:47:55 +01:00
test Added org-mode files in common 2020-12-26 01:47:55 +01:00
angular_momentum.org Added org-mode files in common 2020-12-26 01:47:55 +01:00
bitstring.org Added org-mode files in common 2020-12-26 01:47:55 +01:00
README.org Added org-mode files in common 2020-12-26 01:47:55 +01:00

Common

elisp:(org-babel-tangle)

This directory contains many utility functions used by all the other directories.

Dune files

Headers

(library
(library

Library

General information

(name common)
(public_name qcaml.common)
(synopsis "General utilities used in all QCaml libraries.")
(name test_common)
(synopsis "Test for common library")

Dependencies

(libraries
   str
   zarith
   getopt
)
(libraries
alcotest
qcaml.common
)

Extra C files

The math_functions file contains small C snippets to add missing functionalities to OCaml, such as support for the popcnt instruction.

(c_names
math_functions
)
(c_flags (:standard)
-Ofast -march=native -fPIC
)

Footers

)
)