mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 17:45:22 +00:00
6481b34e23
Add a way to compile third-party libraries from source instead of downloading prebuilt ones. Each library source code is downloaded with git into a submodule at configure time, in response to the find_package(library_name) CMake call, except for OpenSSL where the official source archive is used. Each submodule is attached to a release tag on its own upstream repository. All the libraries are built using CMake directly, except for OpenSSL which uses a formula system, which permits to build libraries with a separate build system when there's no easy way to integrate it directly with CMake. This new dependency system determines which library is fetched from where using the concept of "layers". Currently we have three of them: source, formula, facebook, where the last layer represents the pre-built libraries. The provided order will be used when looking for libraries. A system to patch submodule source code has been added and it's currently used with googletest, libudev and util-linux. Patches should be put under libraries/cmake/source/<library name>/patches/<submodule>, where <submodule> is often one and is "src", but in other cases, like AWS, there are multiple with a more specific name. If for whatever reason the submodule cloning or the patching fails, the submodule has to be unregistered and its folder should be cleared. This should be achievable with "git submodule deinit -f <submodule path>" Following some other changes on existing functionality: - Changed the CMake variable BUILD_TESTING to OSQUERY_BUILD_TESTS to avoid enabling tests on third party libraries. Due to an issue with glog the BUILD_TESTING variable will be always forced to OFF. - Moved compiler and linker flags to their own file cmake/flags.cmake - Moved all the third-party CMakeLists.txt used for pre-built libraries under libraries/cmake/facebook - Added the --exclude-folders option to tools/format-check.py and tools/git-clang-format.py, so that it's possible to ignore any third party library source code. - The format and format_check target use the new --exclude-folders option to exclude libraries/cmake/source from formatting. - The test and osquery binaries are properly compiled with PIE (osquery/osquery#5611) Co-authored-by: Stefano Bonicatti <stefano.bonicatti@gmail.com> Co-authored-by: Teddy Reed <teddy@casualhacking.io>
79 lines
799 B
Plaintext
79 lines
799 B
Plaintext
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
*.pyc
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
*.pkg
|
|
|
|
# Build Artifacts
|
|
.provision
|
|
build/
|
|
*.bottle.tar.gz
|
|
|
|
# Run Artifacts
|
|
*.log
|
|
*.orig
|
|
*.rej
|
|
|
|
# Vagrant Artifacts
|
|
.vagrant
|
|
.sources
|
|
|
|
# OS artifacts
|
|
.DS_Store
|
|
|
|
# CLion IDE
|
|
.idea
|
|
cmake-build-debug
|
|
cmake-build-release
|
|
|
|
# QtCreator files
|
|
osquery.config
|
|
osquery.creator
|
|
osquery.files
|
|
osquery.includes
|
|
|
|
# Doxygen Documentation
|
|
doxygen/html
|
|
doxygen/latex
|
|
|
|
# Editors
|
|
*~
|
|
\#*\#
|
|
*.swp
|
|
*.vscode
|
|
.vs/
|
|
|
|
# Tags
|
|
tags
|
|
cscope.files
|
|
cscope.out
|
|
|
|
# Ignored components
|
|
/external/*
|
|
!/external/CMakeLists.txt
|
|
|
|
# Buck
|
|
.buckd/
|
|
buck-out/
|
|
|
|
# Windows system specific toolchain paths
|
|
tools/buckconfigs/windows-x86_64/toolchain/vs2017_15.5.bcfg
|