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:
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: