I have built Blender 2.8 for Ubuntu 18 a couple of times. I always did:

git clone https://git.blender.org/blender.git
cd blender
git submodule update --remote
git submodule update --init --recursive
git submodule foreach git checkout master
git submodule foreach git pull --rebase origin master
make update

For Blender 2.79.x I do the followings:

git clone https://git.blender.org/blender.git
cd blender
git checkout blender2.7
git submodule update --remote
git submodule update --init --recursive
git submodule foreach git checkout master
git submodule foreach git checkout blender2.7
git submodule foreach git pull --rebase origin master
make update

Amir

On Sat, Jan 12, 2019 at 11:22 AM Jaros Milan <milan.ja...@vsb.cz> wrote:

> Hi,
>
> I tried those steps on ubuntu and debian and it works:
>
> sudo apt-get update
> sudo apt-get install git build-essential gawk python-dev cmake gcc g++ llvm
>
> mkdir -p ~/apps
> mkdir -p ~/apps/blender-git
> cd ~/apps/blender-git
> git clone https://git.blender.org/blender.git
> ./blender/build_files/build_environment/install_deps.sh
> mkdir -p ~/apps/blender-git/build
> cd ~/apps/blender-git/build
> cmake -C../blender/build_files/cmake/config/blender_release.cmake
> ../blender
> make -j install
>
> Do you have some error message?
>
> Best regards
> Milan
>
> Dne 12. 1. 2019 13:17 napsal uživatel Achal Prakash Pandey <
> pandeyachal...@gmail.com>:
> Hi. I'm having a little trouble building blender on ubuntu 18.04. When I
> run the install_deps.sh script ( which should work on Ubuntu according to
> the wiki) it says OpenShadingLanguage-1.9.9 failed to compile. Can you
> please tell me where I'm going wrong?
>
> I'm sorry if it is not the correct place to seek assistance. Can you please
> point me to the appropriate place? I tried the IRC channels #blendercoders
> and #blendercompilers but no one ever replied.
> Thank you.
> _______________________________________________
> Bf-committers mailing list
> Bf-committers@blender.org
> https://lists.blender.org/mailman/listinfo/bf-committers
> _______________________________________________
> Bf-committers mailing list
> Bf-committers@blender.org
> https://lists.blender.org/mailman/listinfo/bf-committers
>
_______________________________________________
Bf-committers mailing list
Bf-committers@blender.org
https://lists.blender.org/mailman/listinfo/bf-committers

Reply via email to