mirror of
https://github.com/Bareflank/hypervisor
synced 2026-08-17 06:23:04 -04:00
This patch addresses several bugs with the build system: - Lack of Windows support - Clang Tidy was not working properly - Making modifications to the source code would compile, but would not re-link resulting in issues - Removed excess file copying - Make clean now works - Removed unused or confusing folders in the build folder as part of the build process. It is now much easier to traverse the build folder for dependencies - The targets didn't work with extensions. This has been fixed. In addition, the following was also done under this patch - Intrinsics was moved to the top level and out of the VMM - Platform files are now in a folder called "platform" instead of "arch" - All subprojects have the same include/src/tests files structure - All intel specific code is properly organized to match intended namespacing - Removed dead code - A small part of the VMCS was converted to use the delegate pattern - All dependencies are now downloaded at configure time instead of compile time. - The cache directory is now cached by Travis CI - CMake output better matches old build system - Added make rebuild and separate clean targets to remove various parts of the build depending on needs. - Added targets for Clean, Tidy, Rebuild and Format for each subproject - Re-organized the cmake logic so that macros are not spread out - New validation removes unneeded complexity - Removed the need for the compiler wrapper, and in doing so, we now provide a simpilar set of toolchain files - Removed the need for Git repos. All external dependencies are downloaded using a zip or tarball - Libcxx and Libcxxabi are now in their own files. Much similar logic - Unit test CMake files have been greatly simplified - Each subproject is unaware of it's prefix and no long use VMM, USERSPACE or TEST variables in their cmake files - Fixed bugs with the flags - Renamed the varbiables in the default.cmake config to be more consistent and easier to follow in the rest of the code Signed-off-by: “rianquinn” <“rianquinn@gmail.com”>
90 lines
2.4 KiB
Bash
Executable file
90 lines
2.4 KiB
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# Bareflank Hypervisor
|
|
# Copyright (C) 2015 Assured Information Security, Inc.
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
OUTPUT=$PWD/.astyle_results.txt
|
|
|
|
rm -f $OUTPUT
|
|
|
|
if [[ "$#" -lt 2 ]]; then
|
|
echo "ERROR: missing arguments"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "$#" == 3 ]]; then
|
|
echo $3
|
|
cd $3
|
|
fi
|
|
|
|
if [[ ! "$2" == "all" ]] && [[ ! "$2" == "diff" ]]; then
|
|
echo "ERROR: invalid opcode '$2'. Expecting 'all' or 'diff'"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "$2" == "all" ]]; then
|
|
files=$(git ls-files | grep -Ee "\.(cpp|h|c)$" || true)
|
|
else
|
|
files=$(git diff --relative --name-only HEAD $PWD | grep -Ee "\.(cpp|h|c)$" || true)
|
|
|
|
if [[ ! -z "$files" ]]; then
|
|
echo " Files undergoing astyle checks:"
|
|
for f in $files; do
|
|
echo " - $f"
|
|
done
|
|
fi
|
|
fi
|
|
|
|
if [[ -z "${files// }" ]]; then
|
|
echo -e "\033[1;32m\xe2\x9c\x93 no files to format. astyle passed\033[0m"
|
|
exit 0
|
|
fi
|
|
|
|
$1 \
|
|
--style=1tbs \
|
|
--lineend=linux \
|
|
--suffix=none \
|
|
--pad-oper \
|
|
--unpad-paren \
|
|
--break-closing-brackets \
|
|
--align-pointer=name \
|
|
--align-reference=name \
|
|
--indent-preproc-define \
|
|
--indent-switches \
|
|
--indent-col1-comments \
|
|
--keep-one-line-statements \
|
|
--keep-one-line-blocks \
|
|
--pad-header \
|
|
--convert-tabs \
|
|
--min-conditional-indent=0 \
|
|
--indent=spaces=4 \
|
|
--close-templates \
|
|
--add-brackets \
|
|
--break-after-logical \
|
|
$files > $OUTPUT
|
|
|
|
if [[ -z $(grep -s Formatted $OUTPUT) ]]; then
|
|
echo -e "\033[1;32m\xe2\x9c\x93 astyle passed\033[0m"
|
|
rm -Rf $OUTPUT
|
|
exit
|
|
else
|
|
echo -e "\xe2\x9c\x97 astyle failed: the following files were formatted:"
|
|
grep -s Formatted $OUTPUT | awk '{print $2}'
|
|
echo ""
|
|
rm -Rf $OUTPUT
|
|
exit -1
|
|
fi
|