more network stuff
[libjh.git] / compile.sh
1 #!/bin/bash
2 # YES, THIS NEEDS BASH, NOT /bin/sh (e.g. for <<<).
3
4 # Copyright (2013) Jann Horn <jann@thejh.net>
5
6 # -f                  for files with weird names
7 # -u                  for coding mistakes (or against, to be precise)
8 # -e and -o pipefail  so that we don't have to spam the code with error handling
9 set -f -u -e -o pipefail
10
11 # flags for the build - adjust for your needs
12 # delete all the generated stuff afterwards (with `rm -r gen`)
13 CC='gcc'
14 CFLAGS='-O3 -Wall -Werror -Wno-error=strict-aliasing -fPIC -std=c99 -march=native'
15
16 # create build environment if it doesn't exist yet
17 mkdir -p gen # contains all generated files
18 mkdir -p gen/realc # source files, with our preprocessing applied
19 mkdir -p gen/realc_preprocessed # source files, preprocessed by the C compiler
20 mkdir -p gen/chash # hashes of the preprocessed C files used to generate files in gen/obj
21 mkdir -p gen/obj # object files
22
23 echo "welcome. your friendly compiler will be \"$CC\" today." >&2
24 echo "going ahead with CFLAGS=\"$CFLAGS\"..." >&2
25
26 # generate header
27 set +f
28 cat *.h > gen/jh.h
29 set -f
30 for source_file in $(ls|grep '\.c$'); do
31   echo "extracting header data from $source_file..." >&2
32   source_name="$(sed 's|\.c$||' <<< "$source_file")"
33   echo "/* ----========   $source_name   ========---- */"
34   
35   cat "$source_file" |
36   sed 's|^PUBLIC_FN \(.*\){|KEEPLINE \1;|g' |
37   sed 's|^PUBLIC_CONST |KEEPLINE #define |g' |
38   sed 's|^HEADER |KEEPLINE |g' |
39   (set +e +o pipefail; grep '^KEEPLINE'; exit 0) |
40   sed 's|^KEEPLINE ||g'
41   
42   echo ''
43   echo ''
44 done >> gen/jh.h
45
46 # preprocess all source files
47 for source_file in $(ls|grep '\.c$'); do
48   echo "handling source file $source_file..." >&2
49   source_name="$(sed 's|\.c$||' <<< "$source_file")"
50   
51   # do our own preprocessing
52   echo '#include "../jh.h"' > "gen/realc/$source_name.c"
53   
54   cat "$source_file" |
55   (set +e +o pipefail; grep -v '^PUBLIC_CONST '; exit 0) |
56   sed 's|^PUBLIC_FN ||g' |
57   (set +e +o pipefail; grep -v '^HEADER '; exit 0) |
58   sed 's| *JH_ATTR_[A-Z_]*||g' |
59   cat >> "gen/realc/$source_name.c"
60   if [ $? -ne 0 ]; then exit 1; fi
61   
62   # do the normal C preprocessing
63   echo 'preprocessing...' >&2
64   $CC -E "gen/realc/$source_name.c" > "gen/realc_preprocessed/$source_name.i"
65   
66   # compile if there have been changes since the last time
67   echo -n 'checking sha checksum... ' >&2
68   file_hash="$(shasum "gen/realc_preprocessed/$source_name.i" | cut -d' ' -f1)"
69   # drop errors: that file might well be missing
70   set +e
71   last_file_hash="$(cat "gen/chash/$source_name" 2>/dev/null)"
72   set -e
73   if [ "$file_hash" = "$last_file_hash" ]; then
74     echo 'unchanged, will not compile again' >&2
75   else
76     echo 'changed – recompiling.' >&2
77     $CC $CFLAGS -c -o "gen/obj/$source_name.o" "gen/realc_preprocessed/$source_name.i"
78     echo "$file_hash" > "gen/chash/$source_name"
79   fi
80 done
81
82 # ... and link!
83 cd gen/obj
84 $CC -shared -Wl,-soname,libjh.so -o ../libjh.so $(ls)
85 cd ../..