docs: update master's release notes, news and calendar commit
[mesa.git] / docs / releasing.html
index 9b5a8b89d9fe23413e7b930af1f746b4811f67f5..0af05af31ae42658238281d7c95b8e8883cb966b 100644 (file)
@@ -436,6 +436,8 @@ Here is one solution that I've been using.
        chmod 755 -fR $__build_root; rm -rf $__build_root
        mkdir -p $__build_root && cd $__build_root
 
+       # For the distcheck, you may want to specify which LLVM to use:
+       # export LLVM_CONFIG=/usr/lib/llvm-3.9/bin/llvm-config
        $__mesa_root/autogen.sh && make -j2 distcheck
 
        # Build check the tarballs (scons, linux)
@@ -444,28 +446,33 @@ Here is one solution that I've been using.
        cd .. && rm -rf mesa-$__version
 
        # Build check the tarballs (scons, windows/mingw)
+       # You may need to unset LLVM if you set it before:
+       # unset LLVM_CONFIG
        tar -xaf mesa-$__version.tar.xz && cd mesa-$__version
        scons platform=windows toolchain=crossmingw
        cd .. && rm -rf mesa-$__version
 
        # Test the automake binaries
        tar -xaf mesa-$__version.tar.xz && cd mesa-$__version
+       # You may want to specify which LLVM to use:
        ./configure \
                --with-dri-drivers=i965,swrast \
                --with-gallium-drivers=swrast \
                --with-vulkan-drivers=intel \
                --enable-llvm-shared-libs \
                --enable-llvm \
+               --with-llvm-prefix=/usr/lib/llvm-3.9 \
                --enable-glx-tls \
                --enable-gbm \
                --enable-egl \
-               --with-egl-platforms=x11,drm,wayland
+               --with-platforms=x11,drm,wayland,surfaceless
        make -j2 && DESTDIR=`pwd`/test make -j6 install
        __glxinfo_cmd='glxinfo 2>&1 | egrep -o "Mesa.*|Gallium.*|.*dri\.so"'
        __glxgears_cmd='glxgears 2>&1 | grep -v "configuration file"'
        __es2info_cmd='es2_info 2>&1 | egrep "GL_VERSION|GL_RENDERER|.*dri\.so"'
        __es2gears_cmd='es2gears_x11 2>&1 | grep -v "configuration file"'
-       export LD_LIBRARY_PATH=`pwd`/test/usr/local/lib/
+       test "x$LD_LIBRARY_PATH" != 'x' && __old_ld="$LD_LIBRARY_PATH"
+       export LD_LIBRARY_PATH=`pwd`/test/usr/local/lib/:"${__old_ld}"
        export LIBGL_DRIVERS_PATH=`pwd`/test/usr/local/lib/dri/
        export LIBGL_DEBUG=verbose
        eval $__glxinfo_cmd
@@ -485,6 +492,7 @@ Here is one solution that I've been using.
        eval $__es2gears_cmd
        # Smoke test DOTA2
        unset LD_LIBRARY_PATH
+       test "x$__old_ld" != 'x' && export LD_LIBRARY_PATH="$__old_ld" && unset __old_ld
        unset LIBGL_DRIVERS_PATH
        unset LIBGL_DEBUG
        unset LIBGL_ALWAYS_SOFTWARE
@@ -539,6 +547,8 @@ Start the release process.
 </p>
 
 <pre>
+       # For the dist/distcheck, you may want to specify which LLVM to use:
+       # export LLVM_CONFIG=/usr/lib/llvm-3.9/bin/llvm-config
        ../relative/path/to/release.sh . # append --dist if you've already done distcheck above
 </pre>
 
@@ -565,12 +575,13 @@ Something like the following steps will do the trick:
 </pre>
 
 <p>
-Also, edit docs/relnotes.html to add a link to the new release notes, and edit
-docs/index.html to add a news entry. Then commit and push:
+Also, edit docs/relnotes.html to add a link to the new release notes,
+edit docs/index.html to add a news entry, and remove the version from
+docs/release-calendar.html. Then commit and push:
 </p>
 
 <pre>
-       git commit -as -m "docs: add news item and link release notes for X.Y.Z"
+       git commit -as -m "docs: update calendar, add news item and link release notes for X.Y.Z"
        git push origin master X.Y
 </pre>