This document introduces the cmake-based build system for sac2c and describes the intended way of using it. CMake is cross-platform family of tools designed to build, test and package software. One could think of it as a replacement of the existing autotools + Makefiles with a unified solution.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <time.h> | |
| #define MILLION 1000000 | |
| #define N 50000000 | |
| static inline int64_t | |
| time_elapsed (struct timespec a, struct timespec b) |