10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-29 00:14:45 +02:00
QCaml/common/README.org

1.6 KiB

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

)
)