public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 3/3] llvm: New package
Date: Thu, 04 Jul 2019 14:23:12 +0200	[thread overview]
Message-ID: <20190704122312.9655-3-stefan.schantl@ipfire.org> (raw)
In-Reply-To: <20190704122312.9655-1-stefan.schantl@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 3148 bytes --]

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 llvm/llvm.nm | 113 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 113 insertions(+)
 create mode 100644 llvm/llvm.nm

diff --git a/llvm/llvm.nm b/llvm/llvm.nm
new file mode 100644
index 000000000..7e89256d3
--- /dev/null
+++ b/llvm/llvm.nm
@@ -0,0 +1,113 @@
+###############################################################################
+# IPFire.org    - An Open Source Firewall Solution                            #
+# Copyright (C) - IPFire Development Team <info(a)ipfire.org>                   #
+###############################################################################
+
+name       = llvm
+version    = 8.0.0
+release    = 1
+
+groups     = Applications/System
+url        = http://llvm.org
+license    = NCSA
+summary    = The Low Level Virtual Machine.
+
+description
+	LLVM is a compiler infrastructure designed for compile-time, link-time,
+	runtime, and idle-time optimization of programs from arbitrary programming
+	languages. The compiler infrastructure includes mirror sets of programming
+	tools as well as libraries with equivalent functionality.
+end
+
+source_dl  = http://releases.llvm.org/%{version}/
+sources    = %{thisapp}.src.tar.xz
+
+build
+	requires
+		binutils >= 2.32
+		cmake >= 3.14.5
+		gcc
+		gcc-c++
+		libedit-devel 3.1-20190324
+		libffi-devel
+		libxml2-devel
+		zlib-devel
+	end
+
+	DIR_APP = %{DIR_SRC}/%{thisapp}.src
+
+	# Limit parallelization to only 2 jobs at the same time.
+	PARALLELISMFLAGS = -j2
+
+	# Set suffix for libdir based on the build architecture.
+	llvm_libdir_suffix =
+
+	if "%{DISTRO_ARCH}" == "x86_64"
+		llvm_libdir_suffix = 64
+	end
+
+	if "%{DISTRO_ARCH}" == "aarch64"
+		llvm_libdir_suffix = 64
+	end
+
+	build
+		# Create and switch into build directory.
+		mkdir -pv %{DIR_APP}/build
+		cd %{DIR_APP}/build
+
+		%{cmake} .. \
+			-DLLVM_BUILD_TOOLS=ON \
+			-DLLVM_BUILD_UTILS=ON \
+			-DLLVM_BUILD_TESTS=OFF \
+			-DLLVM_BUILD_EXAMPLES=OFF \
+			-DLLVM_BUILD_BENCHMARKS=OFF \
+			-DCMAKE_BUILD_TYPE=Release \
+			-DCMAKE_INSTALL_RPATH=";" \
+			-DLLVM_BUILD_LLVM_DYLIB=OFF \
+			-DLLVM_LINK_LLVM_DYLIB=OFF \
+			-DBUILD_SHARED_LIBS=ON \
+			-DLLVM_ENABLE_FFI=ON \
+			-DLLVM_ENABLE_RTTI=ON \
+			-DLLVM_ENABLE_LIBCXX=OFF \
+			-DLLVM_TARGETS_TO_BUILD="host;" \
+			-DCMAKE_C_COMPILER=gcc \
+			-DCMAKE_CXX_COMPILER=g++ \
+			-DCMAKE_CXX_FLAGS_RELEASE:STRING="%{CFLAGS}" \
+			-DCMAKE_EXE_LINKER_FLAGS="%{LDFLAGS}" \
+			-DENABLE_PIC=1 \
+			-DLLVM_PARALLEL_LINK_JOBS=1 \
+			-DLLVM_ENABLE_DUMP=ON \
+			-DLLVM_LIBDIR_SUFFIX=%{llvm_libdir_suffix} \
+			-Wno-dev
+
+		make %{PARALELLISMFLAGS}
+	end
+
+	test
+		cd %{DIR_APP}/build
+
+		make check-all %{PARALELLISMFLAGS}
+	end
+
+	install
+		cd %{DIR_APP}/build
+
+		make install DESTDIR=%{BUILDROOT}
+	end
+end
+
+packages
+	package llvm
+
+	package llvm-libs
+		template LIBS
+	end
+
+	package llvm-devel
+		template DEVEL
+	end
+
+	package %{name}-debuginfo
+		template DEBUGINFO
+	end
+end
-- 
2.21.0


  parent reply	other threads:[~2019-07-04 12:23 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-04 12:23 [PATCH 1/3] cmake: Update to 3.14.5 Stefan Schantl
2019-07-04 12:23 ` [PATCH 2/3] libedit: Update to 3.1-20190324 Stefan Schantl
2019-07-04 12:23 ` Stefan Schantl [this message]
2019-07-04 15:01   ` [PATCH 3/3] llvm: New package Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190704122312.9655-3-stefan.schantl@ipfire.org \
    --to=stefan.schantl@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox