mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-23 23:41:13 +00:00
54053bc8d0
At this point meson should be able to handle all of the non-windows platforms just fine; we'd like to be able to stop maintaining scons for those platforms sooner than later. Reviewed-by: Eric Anholt <eric@anholt.net>
13 lines
200 B
Bash
Executable File
13 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
if test -n "$LLVM_VERSION"; then
|
|
export LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
|
|
fi
|
|
|
|
rm -rf build
|
|
scons $SCONS_TARGET force_scons=on
|
|
eval $SCONS_CHECK_COMMAND
|