mirror of
https://develop.openfoam.com/Development/ThirdParty-common.git
synced 2025-12-08 06:57:50 +00:00
13 lines
212 B
Bash
Executable File
13 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
# An example for building mesa with llvm
|
|
|
|
mesa=mesa-18.3.4
|
|
llvm=llvm-4.0.1
|
|
|
|
set -x
|
|
./makeMesa \
|
|
$mesa $llvm
|
|
"$@"
|
|
|
|
#------------------------------------------------------------------------------
|