From efc7682aaad4a043f56a06568262feb362ee9952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Tue, 12 Nov 2019 19:08:07 +0100 Subject: [PATCH] disable "--debugger:native" on macOS --- nim.cfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nim.cfg b/nim.cfg index 2f5e6151d..635072488 100644 --- a/nim.cfg +++ b/nim.cfg @@ -22,6 +22,8 @@ --excessiveStackTrace:on # enable metric collection -d:metrics -# add debugging symbols and original files and line numbers ---debugger:native +@if not macosx: + # add debugging symbols and original files and line numbers + --debugger:native +@end