File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
pycheribuild/projects/cross Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ def default_ldflags(self):
125
125
result += ["-L" + str (self .build_dir / "local-libgcc" ), "-nostdlib" ]
126
126
return result
127
127
128
- def compile (self , ** kwargs ):
128
+ def configure (self , ** kwargs ):
129
129
if not self .compiling_for_host ():
130
130
# Symlink libgcc.a to the build dir to allow linking against it without adding all of <sysroot>/lib.
131
131
self .makedirs (self .build_dir / "local-libgcc" )
@@ -134,7 +134,7 @@ def compile(self, **kwargs):
134
134
self .build_dir / "local-libgcc/libgcc.a" ,
135
135
print_verbose_only = False ,
136
136
)
137
- super ().compile (** kwargs )
137
+ super ().configure (** kwargs )
138
138
139
139
def install (self , ** kwargs ):
140
140
super ().install (** kwargs )
You can’t perform that action at this time.
0 commit comments