From 9be3d948b2c73bade59fcbf2d9f8e4c9f513b7eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Chmielowski?= Date: Thu, 7 Jan 2021 15:10:39 +0100 Subject: [PATCH] Make ext_mod compile module with debug_info flags This should fix issue #3472 --- src/ext_mod.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext_mod.erl b/src/ext_mod.erl index 4f0773ceb..916baf7f0 100644 --- a/src/ext_mod.erl +++ b/src/ext_mod.erl @@ -570,7 +570,7 @@ compile_result(Results) -> end. compile_options() -> - [verbose, report_errors, report_warnings, ?ALL_DEFS] + [verbose, report_errors, report_warnings, debug_info, ?ALL_DEFS] ++ [{i, filename:join(app_dir(App), "include")} || App <- [fast_xml, xmpp, p1_utils, ejabberd]] ++ [{i, filename:join(mod_dir(Mod), "include")}