Skip to content

Commit 584d416

Browse files
committed
compiler_arches: Remove unecessary override
1 parent 1b07ecc commit 584d416

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

shellblocks/compiler_archs/arm.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ class CompilerArchARM(CompilerArchGCC):
88
def __init__(self):
99
super().__init__()
1010

11-
self.compiler_path = self.get_compiler_path()
12-
1311
def get_headers(self) -> List[str]:
1412
return ["arch/arm/utils.h"]
1513

shellblocks/compiler_archs/mips.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ class CompilerArchMIPS(CompilerArchGCC):
88
def __init__(self):
99
super().__init__()
1010

11-
self.compiler_path = self.get_compiler_path()
12-
1311
def get_gcc_flags(self):
1412
return super().get_gcc_flags() + [
1513
"-mno-shared",

0 commit comments

Comments
 (0)