Sorry, my bad, I had forgotten that this package is being built by meson. Could you please add it to llvm then?
The .gitignore file is for AUR repo, not for mesa one. The other minor changes is about removing unnecessary white spaces.
Git Clone URL: | https://aur.archlinux.org/mesa-git.git (read-only, click to copy) |
---|---|
Package Base: | mesa-git |
Description: | an open-source implementation of the OpenGL specification, git version |
Upstream URL: | https://www.mesa3d.org |
Keywords: | mesa wayland X11 |
Licenses: | custom |
Conflicts: | libva-mesa-driver, mesa, mesa-libgl, mesa-vdpau, opencl-clover-mesa, opencl-rusticl-mesa, vulkan-intel, vulkan-mesa-layers, vulkan-nouveau, vulkan-radeon, vulkan-swrast, vulkan-virtio |
Provides: | libva-mesa-driver, mesa, mesa-libgl, mesa-vdpau, opencl-driver, opencl-rusticl-mesa, opengl-driver, vulkan-driver, vulkan-intel, vulkan-mesa-layers, vulkan-nouveau, vulkan-radeon, vulkan-swrast, vulkan-virtio |
Submitter: | Krejzi |
Maintainer: | rjahanbakhshi (Lone_Wolf) |
Last Packager: | rjahanbakhshi |
Votes: | 184 |
Popularity: | 2.23 |
First Submitted: | 2014-06-19 21:33 (UTC) |
Last Updated: | 2025-01-20 16:09 (UTC) |
« First ‹ Previous 1 .. 54 55 56 57 58 59 60 61 62 63 64 .. 134 Next › Last »
Sorry, my bad, I had forgotten that this package is being built by meson. Could you please add it to llvm then?
The .gitignore file is for AUR repo, not for mesa one. The other minor changes is about removing unnecessary white spaces.
I re-checked and ninja does choke when the environment var is an empty string.
Since that's a valid value for environment variables I have to protect against it.
Thanks for alerting me the patch is no longer needed, Snoop05 .
@Yurikoles :
I've had issues when setting NINJAFLAGS="" aka an empty string.
That's a valid value for an environment variable but ninja did seem to choke on it, have to re-test though.
About the patch :
Why should CMAKE flags be send to meson ? Maybe those flags should be added in the llvm/clang packages that do use cmake ?
The local gitrepo folders I use are an exact copy of their upstream counterparts, building is done elsewhere. I don't need gitignore files, why should they be added and stored in the aur git repo ?
@Lone_Wolf it seems that check for ninja flag env var is unnecessary, it's safe to pass it unconditionally, if it's empty ninja will just run without flags.
@Lone_Wolf please propagate CMAKE_C_FLAGS and CMAKE_CXX_FLAGS from CFLAGS https://cmake.org/cmake/help/v3.12/variable/CMAKE_LANG_FLAGS.html
Here is patch: also fixed some formatting and added .gitignore:
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..506d336
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+mesa
+pkg
+src
+*.pkg.*
\ No newline at end of file
diff --git a/PKGBUILD b/PKGBUILD
index 6bb2337..dea4ba9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -41,7 +41,7 @@ sha512sums=('SKIP'
# 2: llvm-git (aur)
# 3 llvm-svn (lordheavy unofficial repo)
# 4 llvm (stable from extra) Default value
-#
+#
if [[ ! $MESA_WHICH_LLVM ]] ; then
MESA_WHICH_LLVM=4
fi
@@ -69,11 +69,7 @@ case $MESA_WHICH_LLVM in
;;
*)
esac
-
-
-
-
-
+
pkgver() {
cd mesa
read -r _ver <VERSION
@@ -83,11 +79,10 @@ pkgver() {
prepare() {
# although removing _build folder in build() function feels more natural,
# that interferes with the spirit of makepkg --noextract
- if [ -d _build ]; then
+ if [ -d _build ]; then
rm -rf _build
fi
cd mesa
- patch -Np1 -i "$srcdir"/0001-radeonsi-fix-a-regression-in-si_rebind_buffer.patch
}
build () {
@@ -123,19 +118,19 @@ build () {
-D gallium-opencl=icd \
-D valgrind=false \
-D vulkan-overlay-layer=true \
- -D tools=[]
-
+ -D tools=[] \
+ -D CMAKE_C_FLAGS="${CFLAGS}" \
+ -D CMAKE_CXX_FLAGS="${CXXFLAGS}"
+
meson configure _build
if [[ ! $NINJAFLAGS ]]; then
- ninja -C _build
+ ninja -C _build
else
- ninja "$NINJAFLAGS" -C _build
+ ninja "$NINJAFLAGS" -C _build
fi
}
-
package() {
-
DESTDIR="$pkgdir" ninja -C _build install
# indirect rendering
0001-radeonsi-fix-a-regression-in-si_rebind_buffer.patch
is no longer neccessary (merged)
commit https://cgit.freedesktop.org/mesa/mesa/commit/?id=78e35df52aa2f7d770f929a0866a0faa89c261a9 causes visual corruption and GPU faults on several types of AMD cards.
That specific commit is reverted in prepare() now.
See https://bugs.freedesktop.org/show_bug.cgi?id=110701 https://bugs.freedesktop.org/show_bug.cgi?id=108824
My mistake. I swear I had base-devel on this machine.
Read https://wiki.archlinux.org/index.php/Arch_User_Repository#Prerequisites , then check which groups bison and flex are members of.
I think bison and flex should be added as dependencies.
Pinned Comments
Lone_Wolf commented on 2024-09-10 19:58 (UTC)
removed obsolete options, build now works again.
building opencl clover is disabled for now, see https://gitlab.freedesktop.org/mesa/mesa/-/issues/11863
Those that need opencl should use rusticl instead. Note that rusticl at runtime is disabled by default, see https://docs.mesa3d.org/envvars.html#rusticl-environment-variables for info about enabling it.
Lone_Wolf commented on 2020-04-23 12:26 (UTC) (edited on 2023-03-30 07:04 (UTC) by Lone_Wolf)
Mesa and llvm are closely tied together. Everytime the llvm mesa is built against changes/updates , mesa needs to be rebuilt.
I expect anyone building mesa-git against one of the llvm trunk variants to be able to do that themselves, but atleast some of the people that built against repo llvm don't understand how to deal with such a rebuild.
The rest of this post is meant for those people.
Option A - best one
see https://wiki.archlinux.org/index.php/DeveloperWiki:Building_in_a_clean_chroot for the official way or https://aur.archlinux.org/packages/clean-chroot-manager for an alternative method.
Option B - 2nd best
Lone_Wolf commented on 2019-07-09 13:43 (UTC) (edited on 2023-04-18 10:41 (UTC) by Lone_Wolf)
WARNING : aur helpers don't support this method at all. They check .SRCINFO and that doesn't include this variable so it will use the default which is hardcoded to build against repo llvm.
Why would I want to use llvm development versions ?
Lone_Wolf commented on 2018-01-30 14:06 (UTC) (edited on 2023-02-12 11:56 (UTC) by Lone_Wolf)
run pacman Syu update non-repo packages for llvm if you use them
build mesa-git, log out , update mesa-git and restart X .
run
glxinfo -B
to verify basic OpenGL functionalitybuild lib32-mesa-git
run
glxinfo32 -B
to verify basic OpenGL functionality for multilib programs