-
Hi, I’m looking at implementing a linker of my own and I’ve gotten to the save_string function and see that it adds the string to the string_pool, but doing a code search over string_pool doesn’t reveal it being used anywhere else. |
Beta Was this translation helpful? Give feedback.
Answered by
rui314
Jun 8, 2023
Replies: 1 comment 1 reply
-
We use the vector to keep strings alive for the entire execution of the linker. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
qua3k
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We use the vector to keep strings alive for the entire execution of the linker.