summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-06-27 21:12:13 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-06-27 21:12:13 -0700
commit0674292c6616f61d8d717f0f5f499cb4748dd7b1 (patch)
tree2e47e18056fa58bc18a745bbcedb9a19a7c9b1fd
parent0638193769f07bb4851d500b11186a05fda24b65 (diff)
downloadnasm-0674292c6616f61d8d717f0f5f499cb4748dd7b1.tar.gz
outform: build ALL formats by default, including DBG
There really is no point to ever excluding a backend anymore... all it leads to is bitrot. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--outform.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/outform.h b/outform.h
index 6d535929..d2449a54 100644
--- a/outform.h
+++ b/outform.h
@@ -107,6 +107,9 @@
#ifndef OF_MACHO
#define OF_MACHO
#endif
+#ifndef OF_DBG
+#define OF_DBG
+#endif
#endif /* OF_ALL */
/* turn on groups of formats specified.... */
@@ -204,6 +207,9 @@
#ifdef OF_NO_MACHO
#undef OF_MACHO
#endif
+#ifdef OF_NO_DBG
+#undef OF_DBG
+#endif
#ifndef OF_DEFAULT
#define OF_DEFAULT of_bin