diff --git a/pisi-index.xml b/pisi-index.xml
index c9a5718c14..97e052ef2d 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -202914,6 +202914,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.llvm-libs
llvm-clang
lld
+ cmake
programming/misc/libc++/pspec.xml
@@ -205310,6 +205311,80 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+
+ openmp
+ https://openmp.llvm.org/
+
+ Idris Kalp
+ idriskalp@gmail.com
+
+ MIT
+ library
+ programming.misc
+ LLVM OpenMP runtime library
+ LLVM OpenMP çalışma zamanı kitaplığı
+ openmp provides runtime for OpenMP by LLVM
+ openmp, LLVM tarafından OpenMP çalışma zamanı kitaplıklarını içerir
+ https://github.com/llvm/llvm-project/releases/download/llvmorg-9.0.1/openmp-9.0.1.src.tar.xz
+
+ llvm
+ llvm-libs
+ llvm-clang
+ lld
+ cmake
+ libc++-devel
+ libffi-devel
+
+ programming/misc/openmp/pspec.xml
+
+
+ openmp
+
+ llvm-libs
+ libc++
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+ openmp-32bit
+ openmp 32-bit libraries
+ openmp 32-bit kitaplıkları
+ emul32
+ emul32
+
+ openmp
+
+
+ /usr/lib32
+
+
+
+ openmp-devel
+ Development files for openmp
+ openmp için geliştirme dosyaları
+
+ openmp
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/lib32/pkgconfig/poppler.pc
+
+
+
+
+ 2020-01-23
+ 9.0.1
+ First release
+ Idris Kalp
+ idriskalp@gmail.com
+
+
+
google-sparsehash
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index c1e7602e87..4f66ac9f8f 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-14376d21dedf52448f739f4824914e535eb150b0
\ No newline at end of file
+63c88b7c9d01ea64992b98a6e75308729ca66a9e
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index 30c154d26a..50a314562e 100644
Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ
diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum
index 21a130f560..0626bcab7f 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-7b4442b9db33d9f48e125ba624133923352d0f14
\ No newline at end of file
+c475eefb30d8a30f26798731cfdb8e5f210a7f2c
\ No newline at end of file
diff --git a/programming/misc/openmp/actions.py b/programming/misc/openmp/actions.py
new file mode 100644
index 0000000000..7acdabd413
--- /dev/null
+++ b/programming/misc/openmp/actions.py
@@ -0,0 +1,50 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import get
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import cmaketools
+from pisi.actionsapi import pisitools
+
+
+def setup():
+
+ shelltools.export("CC", "clang -fuse-ld=lld -rtlib=compiler-rt")
+ shelltools.export("CXX", "clang++ -fuse-ld=lld -rtlib=compiler-rt -stdlib=libc++")
+
+ options = "-DCMAKE_BUILD_TYPE=Release \
+ -DLIBOMP_ENABLE_ASSERTIONS=ON \
+ -DLIBOMP_ENABLE_SHARED=ON \
+ -DLIBOMP_USE_HIER_SCHED=ON \
+ "
+
+ if get.buildTYPE() == "emul32":
+
+ options = " -DOPENMP_LIBDIR_SUFFIX=32 \
+ "
+ else:
+ options = "-DOPENMP_LIBDIR_SUFFIX= \
+ "
+
+ cmaketools.configure(options)
+
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+
+ if get.buildTYPE() == "emul32":
+ pisitools.remove("/usr/lib32/libgomp.so")
+ else:
+ pisitools.remove("/usr/lib/libgomp.so")
+
+
+ #pisitools.removeDir("/usr/share/gtk-doc")
+ pisitools.dodoc("CREDITS.txt", "LICENSE.txt", "README.rst")
diff --git a/programming/misc/openmp/pspec.xml b/programming/misc/openmp/pspec.xml
new file mode 100644
index 0000000000..6a687d5a17
--- /dev/null
+++ b/programming/misc/openmp/pspec.xml
@@ -0,0 +1,75 @@
+
+
+
+
+ openmp
+ https://openmp.llvm.org/
+
+ Idris Kalp
+ idriskalp@gmail.com
+
+ MIT
+ library
+ LLVM OpenMP runtime library
+ openmp provides runtime for OpenMP by LLVM
+ https://github.com/llvm/llvm-project/releases/download/llvmorg-9.0.1/openmp-9.0.1.src.tar.xz
+
+ llvm
+ llvm-libs
+ llvm-clang
+ lld
+ cmake
+ libc++-devel
+ libffi-devel
+
+
+
+
+ openmp
+
+ llvm-libs
+ libc++
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ openmp-32bit
+ openmp 32-bit libraries
+ emul32
+ emul32
+
+ openmp
+
+
+ /usr/lib32
+
+
+
+
+ openmp-devel
+ Development files for openmp
+
+ openmp
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/lib32/pkgconfig/poppler.pc
+
+
+
+
+
+
+ 2020-01-23
+ 9.0.1
+ First release
+ Idris Kalp
+ idriskalp@gmail.com
+
+
+
\ No newline at end of file
diff --git a/programming/misc/openmp/translations.xml b/programming/misc/openmp/translations.xml
new file mode 100644
index 0000000000..2fae14a7cd
--- /dev/null
+++ b/programming/misc/openmp/translations.xml
@@ -0,0 +1,18 @@
+
+
+
+ openmp
+ LLVM OpenMP çalışma zamanı kitaplığı
+ openmp, LLVM tarafından OpenMP çalışma zamanı kitaplıklarını içerir
+
+
+
+ openmp-32bit
+ openmp 32-bit kitaplıkları
+
+
+
+ openmp-devel
+ openmp için geliştirme dosyaları
+
+