mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
8 lines
232 B
INI
8 lines
232 B
INI
if (not 'ld_plugin' in config.available_features):
|
|
config.unsupported = True
|
|
|
|
# gold can't load instrumented plugin.
|
|
for san in ['asan', 'msan', 'ubsan']:
|
|
if (san in config.available_features):
|
|
config.unsupported = True
|