7 lines
226 B
Bash
Executable File
7 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
# based on the instructions from edk2-platform
|
|
set -e
|
|
. build_common.sh
|
|
# not actually GCC5; it's GCC7 on Ubuntu 18.04.
|
|
GCC5_AARCH64_PREFIX=aarch64-linux-gnu- build -n 4 -a AARCH64 -t GCC5 -p Pixel3XL/Pixel3XL.dsc
|