rcutorture: Add cross-compile capability to initrd.sh

This adds the CROSS_COMPILE environment to the initrd.sh script's
gcc command to enable cross compilation.

Reported-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
This commit is contained in:
Paul E. McKenney 2018-09-06 10:26:07 -07:00 коммит произвёл Paul E. McKenney
Родитель 229ab0cb5b
Коммит 70e9f50477
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -113,7 +113,7 @@ int main(int argc, int argv[])
return 0;
}
___EOF___
cc -static -Os -o init init.c
${CROSS_COMPILE}gcc -static -Os -o init init.c
strip init
rm init.c
echo "Done creating a statically linked C-language initrd"