changeset 421:c41d72a58ef6

Add --defsym support to 'as' wrapper
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 08 May 2016 22:07:29 +0200
parents d15399d94386
children 675bc226ea7e
files extra/as
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/extra/as	Sun Apr 17 09:13:53 2016 -0600
+++ b/extra/as	Sun May 08 22:07:29 2016 +0200
@@ -84,6 +84,9 @@
 		-o)
 			output_file=$1; shift
 			;;
+		--defsym)
+			options="${options} -D$1"; shift
+			;;
 		-v|-version)
 			show_version
 			;;