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
| _build/ | |
| _opam/ | |
| *.install |
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
| all: | |
| groff -m man -T utf8 noop-escaped.man | less -R |
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
| .\" Pipe this output to groff -m man -K utf8 -T utf8 | less -R | |
| .\" | |
| .mso an.tmac | |
| .TH "OBUILDER" 1 "" "Obuilder" "Obuilder Manual" | |
| .\" Disable hyphenation and ragged-right | |
| .nh | |
| .ad l | |
| .SH NAME | |
| .P | |
| obuilder \N'45' a command\N'45'line interface for OBuilder |
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
| *.obj | |
| *.lib | |
| *.exe | |
| *.dll | |
| *.o | |
| *.a |
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
| #!/bin/sh | |
| # - Problems with parsing C, use --clang? | |
| # - Problems with seemingly unused variables, recognize __attribute__ ((unused))? | |
| ./configure --disable-ocamldoc && bear -- make | |
| cppcheck --project=compile_commands.json --quiet \ | |
| --std=c11 \ | |
| --check-level=exhaustive --enable=all \ | |
| --suppress=missingIncludeSystem --suppress=unusedFunction |
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
| #ifndef __has_attribute | |
| #define __has_attribute(x) 0 | |
| #endif | |
| #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L || \ | |
| defined(__cplusplus) && __cplusplus >= 201402L | |
| #define CAMLdeprecated(name, replacement) \ | |
| [[deprecated("use '" #replacement "' instead")]] | |
| #elif __has_attribute(deprecated) || defined(__GNUC__) | |
| #define CAMLdeprecated(name, replacement) \ |
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 <windows.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define NSEC_PER_SEC UINT64_C(1000000000) | |
| #define NSEC_PER_MSEC UINT64_C(1000000) | |
| struct caml_state { | |
| HANDLE timer; | |
| }; |
OlderNewer