charmpp: add conflict with +shared on macOS with GCC (#28211)
This commit is contained in:
parent
8d19db8628
commit
ffc3272a2b
1 changed files with 4 additions and 0 deletions
|
@ -127,6 +127,10 @@ class Charmpp(Package):
|
|||
conflicts("backend=multicore", "+smp")
|
||||
conflicts("backend=ucx", when="@:6.9")
|
||||
|
||||
# Shared-lib builds with GCC are broken on macOS:
|
||||
# https://github.com/UIUC-PPL/charm/issues/3181
|
||||
conflicts("+shared", when="platform=darwin %gcc")
|
||||
|
||||
@property
|
||||
def charmarch(self):
|
||||
plat = sys.platform
|
||||
|
|
Loading…
Reference in a new issue