vp-build/common/build-style
q66 f317ed5e7e common/build-style/cmake.sh: strip -pipe if present in C(XX)FLAGS
Reason: https://gitlab.kitware.com/cmake/cmake/issues/19590

Our workaround within cmake is not sufficient as it does not
address the issue fully and things still break sometimes. So
work around this in the build-style for the time being (and
drop the cmake patch).

Once this is fixed upstream (probably needs special casing
for the -pipe flag and strip it during compile tests) we
can drop this.
2020-01-11 18:52:12 +01:00
..
cargo.sh
cmake.sh common/build-style/cmake.sh: strip -pipe if present in C(XX)FLAGS 2020-01-11 18:52:12 +01:00
configure.sh
fetch.sh
gem.sh
gemspec.sh
gnu-configure.sh
gnu-makefile.sh
go.sh
haskell-stack.sh
meson.sh
meta.sh
perl-module.sh
perl-ModuleBuild.sh
perl6-dist.sh
python-module.sh
python2-module.sh
python3-module.sh
qmake.sh
R-cran.sh
README
ruby-module.sh
scons.sh
slashpackage.sh
waf.sh
waf3.sh

BUILD STYLES
============

These shell snippets provide support for multiple build systems, i.e GNU configure,
CMake, etc. A build style file must provide at least the following functions:

	- do_configure
	- do_build
	- do_install

If a source package defines its own do_xxx() function, the function defined in
the build style file is simply ignored.