From 1c3875d33a28cf201ea8f9428d17135f47fa1f59 Mon Sep 17 00:00:00 2001 From: Justin Salmon Date: Mon, 25 Feb 2013 16:37:34 +0100 Subject: [PATCH] Modify setup.py to ignore unimportant compiler warnings --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6ed1323b686..5ccb00ae645 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,8 @@ depends = ['src/ClientType.hh', 'src/XRootDStatusType.hh', 'src/URLType'], libraries = ['XrdCl', 'XrdUtils', 'dl'], - extra_compile_args = ['-g'], + extra_compile_args = ['-g', '-Wno-deprecated-writable-strings', + '-Wno-shorten-64-to-32', '-Wno-write-strings'], include_dirs = [xrdincdir], library_dirs = [xrdlibdir] )