Skip to content
Snippets Groups Projects
Commit e70dd48f authored by Filippo Cremonese's avatar Filippo Cremonese
Browse files

Add zlib component

parent fc9bac9a
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
#@ load("/components/mpc.lib.yml", "mpc_component")
#@ load("/components/mpfr.lib.yml", "mpfr_component")
#@ load("/components/cmake.lib.yml", "cmake_component")
#@ load("/components/zlib.lib.yml", "zlib_component")
#@ load("/components/libunwind.lib.yml", "libunwind_component")
#@ load("/components/llvm.lib.yml", "llvm_component")
#@ load("/components/llvm_documentation.lib.yml", "llvm_documentation_component")
......@@ -46,6 +47,7 @@ components:
mpc: #@ mpc_component
mpfr: #@ mpfr_component
cmake: #@ cmake_component
zlib: #@ zlib_component
libunwind: #@ libunwind_component
llvm: #@ llvm_component
llvm-documentation: #@ llvm_documentation_component
......
......@@ -40,6 +40,7 @@ builds:
dependencies:
- llvm
- clang-release
- zlib
#@ end
#@ end
......
......@@ -48,7 +48,6 @@
-skip qtwebengine \
-openssl-runtime \
-no-glib \
-qt-zlib \
-no-cups \
-no-gtk \
-qt-harfbuzz \
......@@ -65,7 +64,6 @@
-qt-libjpeg \
-qt-sqlite \
-qt-pcre \
-qt-zlib \
-qt-doubleconversion \
-sql-sqlite \
-no-sql-odbc \
......@@ -116,6 +114,7 @@ builds:
- clang-release
- toolchain/host/gcc
- ui/mesa
- zlib
#@ end
#@ end
......
#@ load("/lib/create_component.lib.yml", "single_build_component")
#@ load("/global_options.lib.yml", "options")
#@ source_url = "https://zlib.net/zlib-1.2.11.tar.gz"
#@yaml/text-templated-strings
---
#@ def _zlib_args():
configure: |
mkdir -p "$BUILD_DIR"
extract.sh --into "$BUILD_DIR" (@= source_url @)
cd "$BUILD_DIR"
./configure \
--shared \
--uname=linux \
--prefix="$ORCHESTRA_ROOT"
build_system: make
dependencies:
- toolchain/host/gcc
#@ end
---
#@ zlib_component = single_build_component(**_zlib_args())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment