You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In DXC the -default-linkage compiler flag changes the default linkage of all functions in a translation unit. It accepts values external and internal (which is the default). This issue is to track how we should transition from the DXC flag to Clang.
Clang's has -fvisibility flag which determines the visibility of functions, but no flag that affects linkage.
The text was updated successfully, but these errors were encountered:
hekota
changed the title
Default linkage flag - figure out transition from DXC's -default-linkage to Clang's -fvisibility
Default linkage flag - how to transition from DXC's -default-linkage to Clang's -fvisibilityMay 20, 2024
hekota
changed the title
Default linkage flag - how to transition from DXC's -default-linkage to Clang's -fvisibility
Default linkage flag - how to transition from DXC's -default-linkage to Clang
May 28, 2024
In DXC the
-default-linkage
compiler flag changes the default linkage of all functions in a translation unit. It accepts valuesexternal
andinternal
(which is the default). This issue is to track how we should transition from the DXC flag to Clang.Clang's has
-fvisibility
flag which determines the visibility of functions, but no flag that affects linkage.The text was updated successfully, but these errors were encountered: