[arch-commits] Commit in openshadinglanguage/repos (3 files)
Felix Yan
felixonmars at archlinux.org
Sat Dec 12 15:28:42 UTC 2020
Date: Saturday, December 12, 2020 @ 15:28:41
Author: felixonmars
Revision: 773309
archrelease: copy trunk to community-staging-x86_64
Added:
openshadinglanguage/repos/community-staging-x86_64/
openshadinglanguage/repos/community-staging-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch
(from rev 773308, openshadinglanguage/trunk/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch)
openshadinglanguage/repos/community-staging-x86_64/PKGBUILD
(from rev 773308, openshadinglanguage/trunk/PKGBUILD)
-----------------------------------------------------+
0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch | 85 ++++++++++++++++++
PKGBUILD | 38 ++++++++
2 files changed, 123 insertions(+)
Copied: openshadinglanguage/repos/community-staging-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch (from rev 773308, openshadinglanguage/trunk/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch)
===================================================================
--- community-staging-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch (rev 0)
+++ community-staging-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch 2020-12-12 15:28:41 UTC (rev 773309)
@@ -0,0 +1,85 @@
+From 2f9093ed2aedc008ba6e0a0b3ba0ff1839d73ac1 Mon Sep 17 00:00:00 2001
+From: Christopher Kulla <fpsunflower at users.noreply.github.com>
+Date: Thu, 12 Mar 2020 13:16:19 -0700
+Subject: [PATCH] Allow OSL to compile with LLVM 10.x (#1128)
+
+---
+ src/liboslexec/backendllvm.cpp | 4 ++++
+ src/liboslexec/llvm_util.cpp | 27 +++++++++++++++++++++------
+ 2 files changed, 25 insertions(+), 6 deletions(-)
+
+diff --git a/src/liboslexec/backendllvm.cpp b/src/liboslexec/backendllvm.cpp
+index 263d8cab..93e091b0 100644
+--- a/src/liboslexec/backendllvm.cpp
++++ b/src/liboslexec/backendllvm.cpp
+@@ -368,7 +368,11 @@ BackendLLVM::addCUDAVariable(const std::string& name, int size, int alignment,
+
+ ASSERT (g_var && "Unable to create GlobalVariable");
+
++#if OSL_LLVM_VERSION >= 100
++ g_var->setAlignment (llvm::MaybeAlign(alignment));
++#else
+ g_var->setAlignment (alignment);
++#endif
+ g_var->setLinkage (llvm::GlobalValue::ExternalLinkage);
+ g_var->setVisibility (llvm::GlobalValue::DefaultVisibility);
+ g_var->setInitializer(constant);
+diff --git a/src/liboslexec/llvm_util.cpp b/src/liboslexec/llvm_util.cpp
+index 8fa915fe..dde2f1e6 100644
+--- a/src/liboslexec/llvm_util.cpp
++++ b/src/liboslexec/llvm_util.cpp
+@@ -1160,8 +1160,12 @@ LLVM_Util::op_return (llvm::Value *retval)
+ void
+ LLVM_Util::op_memset (llvm::Value *ptr, int val, int len, int align)
+ {
+- builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val),
+- uint64_t(len), (unsigned)align);
++ builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val), uint64_t(len),
++#if OSL_LLVM_VERSION >= 100
++ llvm::MaybeAlign(align));
++#else
++ unsigned(align));
++#endif
+ }
+
+
+@@ -1169,8 +1173,12 @@ LLVM_Util::op_memset (llvm::Value *ptr, int val, int len, int align)
+ void
+ LLVM_Util::op_memset (llvm::Value *ptr, int val, llvm::Value *len, int align)
+ {
+- builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val),
+- len, (unsigned)align);
++ builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val), len,
++#if OSL_LLVM_VERSION >= 100
++ llvm::MaybeAlign(align));
++#else
++ unsigned(align));
++#endif
+ }
+
+
+@@ -1187,7 +1195,10 @@ void
+ LLVM_Util::op_memcpy (llvm::Value *dst, int dstalign,
+ llvm::Value *src, int srcalign, int len)
+ {
+-#if OSL_LLVM_VERSION >= 70
++#if OSL_LLVM_VERSION >= 100
++ builder().CreateMemCpy (dst, llvm::MaybeAlign(dstalign), src, llvm::MaybeAlign(srcalign),
++ uint64_t(len));
++#elif OSL_LLVM_VERSION >= 70
+ builder().CreateMemCpy (dst, (unsigned)dstalign, src, (unsigned)srcalign,
+ uint64_t(len));
+ #else
+@@ -1588,7 +1599,11 @@ LLVM_Util::ptx_compile_group (llvm::Module* lib_module, const std::string& name,
+ llvm::raw_svector_ostream assembly_stream (assembly);
+
+ // TODO: Make sure rounding modes, etc., are set correctly
+-#if OSL_LLVM_VERSION >= 70
++#if OSL_LLVM_VERSION >= 100
++ target_machine->addPassesToEmitFile (mod_pm, assembly_stream,
++ nullptr, // FIXME: Correct?
++ llvm::CGFT_AssemblyFile);
++#elif OSL_LLVM_VERSION >= 70
+ target_machine->addPassesToEmitFile (mod_pm, assembly_stream,
+ nullptr, // FIXME: Correct?
+ llvm::TargetMachine::CGFT_AssemblyFile);
Copied: openshadinglanguage/repos/community-staging-x86_64/PKGBUILD (from rev 773308, openshadinglanguage/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-12-12 15:28:41 UTC (rev 773309)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
+pkgname=openshadinglanguage
+pkgver=1.11.10.0
+pkgrel=3
+pkgdesc="Advanced shading language for production GI renderers"
+arch=(x86_64)
+url="https://github.com/imageworks/OpenShadingLanguage"
+license=('custom')
+depends=('boost-libs' 'openimageio' 'openexr' 'intel-tbb' 'freetype2' 'libpng'
+ 'libtiff' 'zlib' 'ncurses' 'clang')
+makedepends=('boost' 'cmake' 'python' 'llvm' 'ninja')
+optdepends=('python: the Python module')
+source=($pkgname-$pkgver.tar.gz::https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz)
+sha512sums=('c81e784ada4d6aed5923c979eb9f601595630c3d4a59098bfb69459364480a7cd6022f9f4c18dd724a3bba2026e40f5a157d91683a1d76bdb1e8e30f97f495a1')
+
+build() {
+ cd OpenShadingLanguage-Release-$pkgver
+
+ cmake . \
+ -B build \
+ -GNinja \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DCMAKE_CXX_STANDARD=14 \
+ -DLLVM_STATIC=0 \
+ -DSTOP_ON_WARNING=OFF
+ ninja -C build
+}
+
+package() {
+ cd OpenShadingLanguage-Release-$pkgver
+
+ DESTDIR="$pkgdir/" ninja -C build install
+
+ install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list