aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mesonlib.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-09-30 15:30:57 -0400
committerGitHub <noreply@github.com>2016-09-30 15:30:57 -0400
commit295b67df518805a1120671e3b248ff0672a89b93 (patch)
treed0b3a80cb6af908c77e4fadf685046a0313efb51 /mesonbuild/mesonlib.py
parent338dbc964cf2927d476d1fb89a5751e8cfce39bd (diff)
parent89753ecc27c9857be2554b1af7fe1f5162b8e761 (diff)
downloadmeson-295b67df518805a1120671e3b248ff0672a89b93.zip
meson-295b67df518805a1120671e3b248ff0672a89b93.tar.gz
meson-295b67df518805a1120671e3b248ff0672a89b93.tar.bz2
Merge pull request #814 from centricular/heavy-cleanup-compilers-buildtargets
Heavy cleanup in compilers and BuildTarget
Diffstat (limited to 'mesonbuild/mesonlib.py')
-rw-r--r--mesonbuild/mesonlib.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py
index 7294a54..abb5641 100644
--- a/mesonbuild/mesonlib.py
+++ b/mesonbuild/mesonlib.py
@@ -91,9 +91,6 @@ def is_windows():
platname = platform.system().lower()
return platname == 'windows' or 'mingw' in platname
-def is_32bit():
- return not(sys.maxsize > 2**32)
-
def is_debianlike():
return os.path.isfile('/etc/debian_version')