# HG changeset patch # User William Astle # Date 1370706877 21600 # Node ID 49010c6653e729dcdaaf9908842234b99bc4ef8f # Parent 776a076d1afa5252f0cfb88e3346c7811ad3a43d Re-enable rawrel output format rawrel output format was disabled accidentally along the way. Re-enable the command line option for it. diff -r 776a076d1afa -r 49010c6653e7 lwasm/main.c --- a/lwasm/main.c Wed Jun 05 19:57:09 2013 -0600 +++ b/lwasm/main.c Sat Jun 08 09:54:37 2013 -0600 @@ -150,6 +150,8 @@ as -> output_format = OUTPUT_DECB; else if (!strcasecmp(arg, "raw")) as -> output_format = OUTPUT_RAW; + else if (!strcasecmp(arg, "rawrel")) + as -> output_format = OUTPUT_RAWREL; else if (!strcasecmp(arg, "obj")) as -> output_format = OUTPUT_OBJ; else if (!strcasecmp(arg, "os9"))