aboutsummaryrefslogtreecommitdiff
path: root/ndk/checkbuild.py
diff options
context:
space:
mode:
Diffstat (limited to 'ndk/checkbuild.py')
-rwxr-xr-xndk/checkbuild.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/ndk/checkbuild.py b/ndk/checkbuild.py
index 8395086d1..49c78c372 100755
--- a/ndk/checkbuild.py
+++ b/ndk/checkbuild.py
@@ -1390,11 +1390,6 @@ class Gdb(ndk.builds.Module):
exe_suffix = '.exe' if self.host.is_windows else ''
gdb_exe = install_dir / ('bin/gdb' + exe_suffix)
- # Strip is skipped when build. Strip the binary now.
- if self.host == ndk.hosts.Host.Darwin:
- cmd = [str(self.gdb_builder.toolchain.strip), str(gdb_exe)]
- subprocess.check_call(cmd)
-
# gdb is currently gdb(.exe)? and the gdb stub is currently gdb-stub.
# Make them gdb-orig(.exe)? and gdb(.exe)? respectively.
gdb_exe.rename(install_dir / ('bin/gdb-orig' + exe_suffix))