2019-09-03 19:06:03 +02:00
|
|
|
#!/bin/bash
|
2017-10-31 19:10:15 +01:00
|
|
|
show_help () {
|
|
|
|
echo "usage: llvm-config <OPTION>... [<COMPONENT>...]
|
|
|
|
|
|
|
|
Get various configuration information needed to compile programs which use
|
|
|
|
LLVM. Typically called from 'configure' scripts. Examples:
|
|
|
|
llvm-config --cxxflags
|
|
|
|
llvm-config --ldflags
|
|
|
|
llvm-config --libs engine bcreader scalaropts
|
|
|
|
|
|
|
|
Options:
|
|
|
|
--version Print LLVM version.
|
|
|
|
--prefix Print the installation prefix.
|
|
|
|
--src-root Print the source root LLVM was built from.
|
|
|
|
--obj-root Print the object root used to build LLVM.
|
|
|
|
--bindir Directory containing LLVM executables.
|
|
|
|
--includedir Directory containing LLVM headers.
|
|
|
|
--libdir Directory containing LLVM libraries.
|
|
|
|
--cppflags C preprocessor flags for files that include LLVM headers.
|
|
|
|
--cflags C compiler flags for files that include LLVM headers.
|
|
|
|
--cxxflags C++ compiler flags for files that include LLVM headers.
|
|
|
|
--ldflags Print Linker flags.
|
|
|
|
--system-libs System Libraries needed to link against LLVM components.
|
|
|
|
--libs Libraries needed to link against LLVM components.
|
|
|
|
--libnames Bare library names for in-tree builds.
|
|
|
|
--libfiles Fully qualified library filenames for makefile depends.
|
|
|
|
--components List of all possible components.
|
|
|
|
--targets-built List of all targets currently built.
|
|
|
|
--host-target Target triple used to configure LLVM.
|
|
|
|
--build-mode Print build mode of LLVM tree (e.g. Debug or Release).
|
|
|
|
--assertion-mode Print assertion mode of LLVM tree (ON or OFF).
|
|
|
|
--build-system Print the build system used to build LLVM (always cmake).
|
|
|
|
--has-rtti Print whether or not LLVM was built with rtti (YES or NO).
|
|
|
|
--has-global-isel Print whether or not LLVM was built with global-isel support (YES or NO).
|
|
|
|
--shared-mode Print how the provided components can be collectively linked (\`shared\` or \`static\`).
|
|
|
|
--link-shared Link the components as shared libraries.
|
|
|
|
--link-static Link the component libraries statically.
|
|
|
|
Typical components:
|
|
|
|
all All LLVM libraries (default).
|
|
|
|
engine Either a native JIT or a bitcode interpreter."
|
|
|
|
}
|
|
|
|
|
|
|
|
version=@LLVM_VERSION@
|
2019-09-03 19:06:03 +02:00
|
|
|
prefix=@LLVM_INSTALL_DIR@
|
2017-10-31 19:10:15 +01:00
|
|
|
has_rtti=NO
|
|
|
|
CPPFLAGS="-I@TERMUX_PKG_SRCDIR@/llvm/include -I${prefix}/include -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS"
|
2018-08-20 19:21:27 +02:00
|
|
|
CFLAGS="${CPPFLAGS} ${CFLAGS} -fPIC -Werror=date-time -Wall -W -Wno-unused-parameter -Wwrite-strings -Wmissing-field-initializers -pedantic \
|
|
|
|
-Wno-long-long -Wcovered-switch-default -Wdelete-non-virtual-dtor -Wstring-conversion \
|
2019-09-03 19:06:03 +02:00
|
|
|
-ffunction-sections -fdata-sections -Os -DNDEBUG -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
2017-10-31 19:10:15 +01:00
|
|
|
CXXFLAGS="${CFLAGS} -fvisibility-inlines-hidden -Wcast-qual -Wnon-virtual-dtor -std=c++11 -fno-exceptions"
|
|
|
|
if [ "$has_rtti" != "YES" ]; then CXXFLAGS="$CXXFLAGS -fno-rtti"; fi
|
|
|
|
LDFLAGS="-L${prefix}/lib"
|
|
|
|
LIBFILE="${prefix}/lib/libLLVM-$version.so"
|
|
|
|
|
2019-09-03 19:06:03 +02:00
|
|
|
components="aarch64 aarch64asmparser aarch64asmprinter aarch64codegen aarch64desc aarch64disassembler \
|
|
|
|
aarch64info aarch64utils aggressiveinstcombine all all-targets analysis arm armasmparser armasmprinter \
|
2018-08-20 19:21:27 +02:00
|
|
|
armcodegen armdesc armdisassembler arminfo armutils asmparser asmprinter binaryformat bitreader bitwriter \
|
2019-09-03 19:06:03 +02:00
|
|
|
codegen core coroutines coverage debuginfocodeview debuginfodwarf debuginfomsf debuginfopdb demangle \
|
|
|
|
dlltooldriver engine executionengine fuzzmutate globalisel gtest gtest_main instcombine instrumentation \
|
|
|
|
interpreter ipo irreader libdriver lineeditor linker lto mc mca mcdisassembler mcjit mcparser mirparser \
|
|
|
|
native nativecodegen objcarcopts object objectyaml option optremarks orcjit passes profiledata runtimedyld \
|
|
|
|
scalaropts selectiondag support symbolize tablegen target testingsupport textapi transformutils vectorize \
|
|
|
|
webassembly webassemblyasmparser webassemblyasmprinter webassemblycodegen webassemblydesc \
|
|
|
|
webassemblydisassembler webassemblyinfo windowsmanifest x86 x86asmparser x86asmprinter x86codegen x86desc \
|
|
|
|
x86disassembler x86info x86utils xray"
|
|
|
|
static_libs="-lLLVMSymbolize -lLLVMDebugInfoPDB -lLLVMDebugInfoDWARF -lLLVMCoverage -lLLVMDlltoolDriver \
|
|
|
|
-lLLVMLineEditor -lLLVMOrcJIT -lLLVMMCA -lLLVMWindowsManifest -lLLVMTextAPI \
|
|
|
|
-lLLVMFuzzMutate -lLLVMMCJIT -lLLVMCoroutines -lLLVMLTO -lLLVMPasses -lLLVMObjCARCOpts -lLLVMipo \
|
|
|
|
-lLLVMInstrumentation -lLLVMVectorize -lLLVMLinker -lLLVMIRReader -lLLVMMIRParser -lLLVMAsmParser \
|
|
|
|
-lLLVMTableGen -lLLVMXRay -lLLVMWebAssemblyDisassembler -lLLVMWebAssemblyCodeGen -lLLVMWebAssemblyDesc \
|
|
|
|
-lLLVMWebAssemblyAsmPrinter -lLLVMWebAssemblyAsmParser -lLLVMWebAssemblyInfo -lLLVMX86Disassembler \
|
|
|
|
-lLLVMX86AsmParser -lLLVMX86CodeGen -lLLVMX86Desc -lLLVMX86Info -lLLVMX86AsmPrinter -lLLVMX86Utils \
|
|
|
|
-lLLVMARMDisassembler -lLLVMARMCodeGen -lLLVMARMAsmParser -lLLVMARMDesc -lLLVMARMInfo -lLLVMARMAsmPrinter \
|
|
|
|
-lLLVMARMUtils -lLLVMAArch64Disassembler -lLLVMMCDisassembler -lLLVMAArch64CodeGen -lLLVMGlobalISel \
|
|
|
|
-lLLVMSelectionDAG -lLLVMAsmPrinter -lLLVMAArch64AsmParser -lLLVMAArch64Desc -lLLVMAArch64Info \
|
|
|
|
-lLLVMAArch64AsmPrinter -lLLVMAArch64Utils -lLLVMObjectYAML -lLLVMLibDriver -lLLVMOption -lLLVMOptRemarks \
|
|
|
|
-lLLVMInterpreter -lLLVMExecutionEngine -lLLVMRuntimeDyld -lLLVMCodeGen -lLLVMTarget -lLLVMScalarOpts \
|
|
|
|
-lLLVMInstCombine -lLLVMAggressiveInstCombine -lLLVMTransformUtils -lLLVMBitWriter -lLLVMAnalysis \
|
|
|
|
-lLLVMProfileData -lLLVMObject -lLLVMMCParser -lLLVMMC -lLLVMDebugInfoCodeView -lLLVMDebugInfoMSF \
|
|
|
|
-lLLVMBitReader -lLLVMCore -lLLVMBinaryFormat -lLLVMSupport -lLLVMDemangle"
|
2018-08-20 19:21:27 +02:00
|
|
|
shared_libs="-lLLVM-$version"
|
|
|
|
libs=$shared_libs
|
2017-10-31 19:10:15 +01:00
|
|
|
handle_args () {
|
2019-09-03 19:06:03 +02:00
|
|
|
if [ "${1:0:2}" != "--" ]; then return 0; fi
|
|
|
|
case "${1:2}" in
|
2018-08-20 19:21:27 +02:00
|
|
|
link-shared) libs=$shared_libs ;;
|
|
|
|
link-static) libs=$static_libs ;;
|
2019-09-03 19:06:03 +02:00
|
|
|
version) echo "$version";;
|
2017-10-31 19:10:15 +01:00
|
|
|
prefix) echo "$prefix";;
|
|
|
|
src-root) echo "@TERMUX_PKG_SRCDIR@";;
|
|
|
|
obj-root) echo "$prefix";;
|
|
|
|
bindir) echo "$prefix/bin";;
|
2019-09-03 19:06:03 +02:00
|
|
|
includedir) echo "$prefix/include";;
|
2017-10-31 19:10:15 +01:00
|
|
|
libdir) echo "$prefix/lib";;
|
|
|
|
cppflags) echo "$CPPFLAGS";;
|
|
|
|
cflags) echo "$CFLAGS";;
|
|
|
|
cxxflags) echo "$CXXFLAGS";;
|
|
|
|
ldflags) echo "$LDFLAGS";;
|
2019-09-03 19:06:03 +02:00
|
|
|
system-libs) echo "-lc -ldl -lz -lm";;
|
2018-08-20 19:21:27 +02:00
|
|
|
libs) echo "$static_libs";;
|
2017-10-31 19:10:15 +01:00
|
|
|
libnames) echo "libLLVM-$version.so";;
|
|
|
|
libfiles) echo "$LIBFILE";;
|
2018-04-30 11:47:35 +02:00
|
|
|
components) echo "$components";;
|
2017-10-31 19:10:15 +01:00
|
|
|
targets-built) echo "@LLVM_TARGETS@";;
|
|
|
|
host-target) echo "@LLVM_DEFAULT_TARGET_TRIPLE@";;
|
|
|
|
build-mode) echo "Release";;
|
|
|
|
assertion-mode) echo "OFF";;
|
|
|
|
build-system) echo "cmake";;
|
|
|
|
has-rtti) echo "$has_rtti";;
|
2019-09-03 19:06:03 +02:00
|
|
|
has-global-isel) echo "ON";;
|
|
|
|
shared-mode) echo "static";;
|
2017-10-31 19:10:15 +01:00
|
|
|
cmakedir) echo "$prefix/lib/cmake/llvm";;
|
2019-09-03 19:06:03 +02:00
|
|
|
*) echo "Unsupported llvm-config switch: ${1}" >&2; exit 1;;
|
2017-10-31 19:10:15 +01:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2019-09-03 19:06:03 +02:00
|
|
|
if [ "$#" -eq 0 ]; then
|
|
|
|
show_help >&2
|
|
|
|
else
|
|
|
|
for arg in $@; do handle_args $arg; done
|
|
|
|
fi
|