[libc] Add missing environ dependency to AArch64 startup implementation

Summary:
Just like the last patch, this dependency was missing. This lead to
linker failures when building the tests.
This commit is contained in:
Joseph Huber 2023-03-16 08:06:14 -05:00
parent 2389f00019
commit 501a8724bd

View File

@ -11,6 +11,7 @@ add_startup_object(
libc.src.stdlib.exit
libc.src.stdlib.atexit
libc.src.string.memory_utils.memcpy_implementation
libc.src.unistd.environ
COMPILE_OPTIONS
-fno-omit-frame-pointer
-ffreestanding # To avoid compiler warnings about calling the main function.