Package Details: blender-git 4.4.r144205.gfba10a82121-1

Git Clone URL: https://aur.archlinux.org/blender-git.git (read-only, click to copy)
Package Base: blender-git
Description: A fully integrated 3D graphics creation suite (development)
Upstream URL: https://blender.org/
Licenses: GPL
Conflicts: blender, blender-4.1-bin
Provides: blender
Submitter: stativ
Maintainer: fbrennan (bartus)
Last Packager: bartus
Votes: 76
Popularity: 0.000106
First Submitted: 2013-12-05 10:11 (UTC)
Last Updated: 2024-12-04 18:59 (UTC)

Dependencies (48)

Required by (62)

Sources (7)

Latest Comments

« First ‹ Previous 1 .. 31 32 33 34 35 36 37 38 39 40 Next › Last »

mosra commented on 2010-08-18 16:41 (UTC)

Yes, it works without ~/.blender, but it looks for the files in different directory (/usr/share/blender/2.5/) than where they are installed (/usr/share/blender/2.53/).

mosra commented on 2010-08-18 15:53 (UTC)

When I install blender on clean system (without ~/.blender), the blender starts with empty UI. I went through logs and found that blender looks in /usr/share/blender/2.5/ for scripts but they are installed into /usr/share/blender/2.53/. Simple symlink 2.5 -> 2.53 solved that. Also I looked into pacman -Ql blender-svn and saw that sequence and texture plugins are installed into /usr/share/blender/*/plugins (the widcard * somehow didn't expand to 2.53). Fixed PKGBUILD: http://aur.pastebin.com/HEHc2RJ3 (ugly, the version string could be obtained automatically). Thanks for updating.

stativ commented on 2010-08-15 08:25 (UTC)

miffe: Try to remove CMakeCache from $srcdir/blender-build (or the blender-build completely)

miffe commented on 2010-08-11 18:42 (UTC)

It works now if I run cmake manually, but when it's run from makepkg it still detects sse2. Really weird. % cmake -DCMAKE_INSTALL_PREFIX=/usr /home/miffe/blender-svn/src/blender -- Detecting SSE support -- ...SSE support found. -- ...SSE2 support missing. % makepkg -- Detecting SSE support -- ...SSE support found. -- ...SSE2 support found.

<deleted-account> commented on 2010-08-11 12:10 (UTC)

A patch was commited against the sse2 bug (r31233). Please try updating :)

miffe commented on 2010-08-10 02:26 (UTC)

The bugreport is here https://projects.blender.org/tracker/index.php?func=detail&aid=23257&group_id=9&atid=498 Btw, the .install file says "This package brings SVN Blender compiled with scons."

<deleted-account> commented on 2010-08-10 02:12 (UTC)

Probably because of things like this (and others): IF(WITH_RAYOPTIMIZATION AND SUPPORT_SSE_BUILD) SET(PLATFORM_CFLAGS " -msse -msse2 ${PLATFORM_CFLAGS}") ADD_DEFINITIONS(-D__SSE__) ADD_DEFINITIONS(-D__MMX__) ENDIF(WITH_RAYOPTIMIZATION AND SUPPORT_SSE_BUILD) It seems sse2 is harcoded in many places in the cmake files. I'm not sure if it's a requirement or an oversight. Btw, sorry for the delay miffe, been a bit busy =) Anyways, glad it compiles for you

miffe commented on 2010-08-10 02:07 (UTC)

Adding -DWITH_RAYOPTIMIZATION:BOOL=OFF to cmake makes it compile without SSE. I'll open a bugreport with blender.

miffe commented on 2010-08-08 13:51 (UTC)

Now i get this when building: Running makesrna, program versions $Id: makesrna.c 30999 2010-08-03 05:14:59Z campbellbarton $ /bin/sh: line 1: 18684 Illegal instruction ../../../../bin/makesrna /home/miffe/blender-svn/src/blender-build/source/blender/makesrna/intern/ make[2]: *** [source/blender/makesrna/intern/rna_group_gen.c] Error 132 make[1]: *** [source/blender/makesrna/intern/CMakeFiles/bf_rna.dir/all] Error 2 make: *** [all] Error 2 Aborting... I'm guessing its because blender builds with sse2, but my Athlon XP only has sse support. Anyone know how to turn it off?