mesa-gl:moved to "simplified /usr" and towards RCS
[nyanlinux.git] / builders / mesa-gl-amd-sh-945288ffaecac106c978d10cd4d8512fa2992c47 / contrib / generators_nir.sh
blobae998e7a57a8a6c4a321e70a8d02c6ba41b4fcbb
1 printf "Running nir code generators-->\n"
2 mkdir -p $build_dir/src/compiler/nir
3 #===============================================================================
4 # removing the braindamaged qsort class
5 cp -f $src_dir/src/compiler/nir/nir.c $build_dir/src/compiler/nir/nir.c
6 sed -i $build_dir/src/compiler/nir/nir.c \
7 -e '/u_qsort.h/ d' \
8 -e 's/util_qsort_r/qsort_r/' &
9 #===============================================================================
10 export PYTHONPATH=$mako
11 $python3 $src_dir/src/compiler/nir/nir_builder_opcodes_h.py \
12 >$build_dir/src/compiler/nir/nir_builder_opcodes.h &
13 #------------------------------------------------------------------------------
14 $python3 $src_dir/src/compiler/nir/nir_constant_expressions.py \
15 >$build_dir/src/compiler/nir/nir_constant_expressions.c &
16 #------------------------------------------------------------------------------
17 $python3 $src_dir/src/compiler/nir/nir_opcodes_h.py \
18 >$build_dir/src/compiler/nir/nir_opcodes.h &
19 #------------------------------------------------------------------------------
20 $python3 $src_dir/src/compiler/nir/nir_opcodes_c.py \
21 >$build_dir/src/compiler/nir/nir_opcodes.c &
22 #------------------------------------------------------------------------------
23 $python3 $src_dir/src/compiler/nir/nir_opt_algebraic.py \
24 >$build_dir/src/compiler/nir/nir_opt_algebraic.c &
25 #------------------------------------------------------------------------------
26 $python3 $src_dir/src/compiler/nir/nir_intrinsics_h.py \
27 --outdir $build_dir/src/compiler/nir &
28 #------------------------------------------------------------------------------
29 $python3 $src_dir/src/compiler/nir/nir_intrinsics_c.py \
30 --outdir $build_dir/src/compiler/nir &
31 #------------------------------------------------------------------------------
32 $python3 $src_dir/src/compiler/nir/nir_intrinsics_indices_h.py \
33 --outdir $build_dir/src/compiler/nir &
34 unset PYTHONPATH
36 printf "<--nir code generation done\n"