BuildSystem: Fix crt file installation

crt files for userspace are now a dependency of libc, which means that
everytime libc gets installed, crt files will also install.

This fixes the problem when building libc
This commit is contained in:
2024-06-21 17:10:58 +03:00
parent 9e1b5cbaab
commit 22548a3f4a
2 changed files with 9 additions and 10 deletions

View File

@@ -53,7 +53,6 @@ add_custom_target(userspace)
foreach(project ${USERSPACE_PROJECTS})
add_subdirectory(${project})
add_dependencies(${project} crtx-install)
add_dependencies(userspace ${project})
# This is to allow cmake to link when libc updates
target_link_options(${project} PRIVATE -nolibc)