diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-02 20:00:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-02 20:00:10 +0100 |
| commit | 5ac6c7cfeba38bf5d984774c51a88085c015d413 (patch) | |
| tree | dba7e48230710f5e5f461225b9537f0d8d441572 | |
| parent | d9ece6cc49779bac08544ccc6dae18191cc8cbf1 (diff) | |
More 32-bit removal.
| -rwxr-xr-x | cdist | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -914,13 +914,10 @@ def target_factory(args): target = LinuxTarget(p[0], None, int(p[1]), args.work) elif s == 'raspbian': target = LinuxTarget(s, None, None, args.work) - elif s == 'osx-intel-32-64': - # Universal Intel 32/64-bit built for config's os_sdk - if args.command == 'build': - target = OSXSingleTarget('x86_64', args.work) - else: - target = OSXUniversalTarget(('i386', 'x86_64'), args.work) - elif s == 'osx-arm-intel-64': + elif s == 'osx-intel': + # Intel 64-bit built for config's os_sdk + target = OSXSingleTarget('x86_64', config.get('osx_sdk'), args.work) + elif s == 'osx-arm-intel': # Universal arm64 and Intel 64-bit built for SDK 11.0 target = OSXUniversalTarget(('arm64', 'x86_64'), args.work) elif s == 'osx-arm64': |
