1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-05 16:10:31 +02:00

Fix Linux build of bare metal AP code.

This commit is contained in:
Andrew Walbran 2023-03-24 17:39:18 +00:00
parent ae83778173
commit 8ed300d620
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
# limitations under the License.
UNAME := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
ifeq ($(UNAME),Linux)
TARGET = aarch64-linux-gnu
else
TARGET = aarch64-none-elf

View File

@ -13,7 +13,7 @@
# limitations under the License.
UNAME := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
ifeq ($(UNAME),Linux)
TARGET = aarch64-linux-gnu
else
TARGET = aarch64-none-elf