32 lines
953 B
Bash
Executable File
32 lines
953 B
Bash
Executable File
#! /usr/bin/env bash
|
|
## vim:set ts=4 sw=4 et:
|
|
set -e; set -o pipefail
|
|
|
|
# NOTE: we are using clang-format-3.9.0 from upx-stubtools
|
|
# see https://github.com/upx/upx-stubtools/releases
|
|
|
|
CLANG_FORMAT="$HOME/local/bin/bin-upx/clang-format-3.9.0"
|
|
if [[ ! -f $CLANG_FORMAT ]]; then
|
|
CLANG_FORMAT="$HOME/bin/bin-upx/clang-format-3.9.0"
|
|
fi
|
|
if [[ ! -f $CLANG_FORMAT ]]; then
|
|
echo "ERROR: $0: cannot find clang-format-3.9.0"
|
|
echo "ERROR: $0: please visit https://github.com/upx/upx-stubtools/releases"
|
|
exit 1
|
|
fi
|
|
|
|
s='Language: Cpp, BasedOnStyle: LLVM, '
|
|
s="$s"' AccessModifierOffset: -4, '
|
|
#s="$s"' AllowShortFunctionsOnASingleLine: None, '
|
|
s="$s"' AlwaysBreakTemplateDeclarations: true, '
|
|
s="$s"' ColumnLimit: 100, '
|
|
s="$s"' IndentWidth: 4, '
|
|
s="$s"' SortIncludes: false, '
|
|
s="$s"' SpaceAfterCStyleCast: true, '
|
|
s="$s"' Standard: Cpp03, '
|
|
CLANG_FORMAT_STYLE='-style={'"$s"' }'
|
|
|
|
#echo $CLANG_FORMAT
|
|
exec "$CLANG_FORMAT" "$CLANG_FORMAT_STYLE" "$@"
|
|
exit 1
|