We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b07ecc commit 584d416Copy full SHA for 584d416
2 files changed
shellblocks/compiler_archs/arm.py
@@ -8,8 +8,6 @@ class CompilerArchARM(CompilerArchGCC):
8
def __init__(self):
9
super().__init__()
10
11
- self.compiler_path = self.get_compiler_path()
12
-
13
def get_headers(self) -> List[str]:
14
return ["arch/arm/utils.h"]
15
shellblocks/compiler_archs/mips.py
@@ -8,8 +8,6 @@ class CompilerArchMIPS(CompilerArchGCC):
def get_gcc_flags(self):
return super().get_gcc_flags() + [
"-mno-shared",
0 commit comments