This file contains 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
# CCExtractor Sample Exercise No. 1 for GSoC 2016: | |
# Find all functions in CCExtractor. | |
#!/bin/sh | |
SRCDIR="../ccextractor/src/" | |
types="(const|volatile|restrict|atomic|_Atomic|static|extern|inline|signed|unsigned|void|char|short|int|long|float|double|bool|_Bool|size_t|ssize_t|ptrdiff_t|([u]?int(_least|_fast|ptr|max)?[0-9]+_t))+" | |
identifiers="([[:alnum:]]|_)+" |
This file contains 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
# CCExtractor Sample Exercise No. 2 for GSoC 2016: | |
# Dealing with compiler warning messages | |
$ uname -srvm | |
Linux 4.4.2-gnu-1 #1 SMP PREEMPT Sat Feb 20 10:58:02 UYT 2016 x86_64 | |
$ gcc --version | |
gcc (GCC) 5.3.0 | |
### linux/build ### |