Define LDFLAGS when using fujitsu compiler (#11669)

This commit is contained in:
t-karatsu 2019-06-11 00:01:32 +09:00 committed by Adam J. Stewart
parent 58b797632e
commit 7178ee3b63

View file

@ -40,6 +40,9 @@ def configure_args(self):
if spec.satisfies('%arm') and not spec.satisfies('platform=darwin'):
args.append('LDFLAGS=-rtlib=compiler-rt')
if spec.satisfies('%fj') and not spec.satisfies('platform=darwin'):
args.append('LDFLAGS=-rtlib=compiler-rt')
if spec.satisfies('%intel'):
args.append('CFLAGS=-no-gcc')