Skip to content

Commit

Permalink
[libc][Obvious] Fix incorrect dependency for alias target
Browse files Browse the repository at this point in the history
Summary:
This was not updated correctly, causing the alias to not be set as
expected. Fix this by using the correct `generic_` prefix.
  • Loading branch information
jhuber6 committed Aug 9, 2023
1 parent 5207451 commit 0c898b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libc/src/stdio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function(add_stdio_entrypoint_object name)
${name}
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.${name}
.generic_${name}
)
endif()
endfunction(add_stdio_entrypoint_object)
Expand Down

0 comments on commit 0c898b2

Please sign in to comment.