Skip to content
Snippets Groups Projects
Verified Commit 044ca680 authored by Nick Curtis's avatar Nick Curtis
Browse files

fix missing toolchain arg for CPP compiler

parent ee5dc627
No related branches found
No related tags found
No related merge requests found
...@@ -287,15 +287,16 @@ class CCompiler(object): ...@@ -287,15 +287,16 @@ class CCompiler(object):
class CPlusPlusCompiler(CCompiler): class CPlusPlusCompiler(CCompiler):
"""Subclass of CCompiler to invoke a C++ compiler.""" """Subclass of CCompiler to invoke a C++ compiler."""
def __init__(self, cc='g++', cflags='-std=c++98 -O3 -fPIC'.split(), def __init__(self, toolchain=None,
cc='g++', cflags='-std=c++98 -O3 -fPIC'.split(),
ldflags=[], libraries=[], ldflags=[], libraries=[],
include_dirs=[], library_dirs=[], defines=[], include_dirs=[], library_dirs=[], defines=[],
source_suffix='cpp'): source_suffix='cpp'):
super(CPlusPlusCompiler, self).__init__( super(CPlusPlusCompiler, self).__init__(
cc=cc, cflags=cflags, ldflags=ldflags, libraries=libraries, toolchain=toolchain, cc=cc, cflags=cflags, ldflags=ldflags,
include_dirs=include_dirs, library_dirs=library_dirs, libraries=libraries, include_dirs=include_dirs,
defines=defines, source_suffix=source_suffix) library_dirs=library_dirs, defines=defines, source_suffix=source_suffix)
class IDIToCDLL(object): class IDIToCDLL(object):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment