Ticket #61752: patch-setup.py.diff

File patch-setup.py.diff, 643 bytes (added by ballapete (Peter "Pete" Dyballa), 3 years ago)

Patch to remove the faulty darwin case in setup.py

  • setup.py

    old new  
    5454        for ext in self.extensions:
    5555            ext.include_dirs.insert(0, cppy.get_include())
    5656            ext.extra_compile_args = opts
    57             if sys.platform == 'darwin':
    58                 ext.extra_compile_args += ['-stdlib=libc++']
    59                 ext.extra_link_args += ['-stdlib=libc++']
    6057            if (ct == 'msvc' and os.environ.get('KIWI_DISABLE_FH4')):
    6158                # Disable FH4 Exception Handling implementation so that we don't
    6259                # require VCRUNTIME140_1.dll. For more details, see: