]> granicus.if.org Git - re2c/blob - __build_redundant_exports.sh
Changed the decsription of tags in docs to avoid ambiguity.
[re2c] / __build_redundant_exports.sh
1 #!/bin/sh
2
3 builddir=__build_redundant_exports
4 rm -rf $builddir
5 mkdir $builddir
6
7 cd $builddir
8 ../configure \
9     --enable-debug \
10     --enable-libs \
11     CFLAGS="-ffunction-sections -fdata-sections" \
12     LDFLAGS="-Wl,--gc-sections -Wl,--print-gc-sections" \
13     && make -j$(nproc)
14 cd ..