commit 958dc1ac0090f9346970eaeb0b80a4994207d32b
parent d58be75d92bfbc3872c5f2c21cdd151d7f3d6648
Author: serge-sans-paille <sguelton@mozilla.com>
Date: Fri, 9 Jan 2026 11:50:32 +0000
Bug 2009108 - Remove dangling reference to SIXGILL_PATH r=ahochheiden
The last reference got removed in Bug 1836094
Differential Revision: https://phabricator.services.mozilla.com/D278237
Diffstat:
1 file changed, 0 insertions(+), 18 deletions(-)
diff --git a/js/moz.configure b/js/moz.configure
@@ -1083,24 +1083,6 @@ set_config("ENABLE_WASM_CUSTOM_PAGE_SIZES", wasm_custom_page_sizes)
set_define("ENABLE_WASM_CUSTOM_PAGE_SIZES", wasm_custom_page_sizes)
-# Enable static checking using sixgill
-# ====================================
-
-option("--with-sixgill", nargs=1, help="Enable static checking of code using sixgill")
-
-
-@depends_if("--with-sixgill")
-@imports("os")
-def sixgill(value):
- for f in ("bin/xdbfind", "gcc/xgill.so", "scripts/wrap_gcc/g++"):
- if not os.path.exists(os.path.join(value[0], f)):
- die("The sixgill plugin and binaries are not at the specified path")
- return value[0]
-
-
-set_config("SIXGILL_PATH", sixgill)
-
-
# Support for readline
# =====================================================