From 411564af27f7d3db87089c7dac0ad58e2026e96b Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 16 Mar 2016 08:24:02 -0400 Subject: driver: handle --target provided as a compiler argument. --- src/driver/slbt_driver_ctx.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 0dd94d4..3127f98 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -200,7 +200,14 @@ static int slbt_split_argv( else if (!(strcmp("Xcompiler",&argv[i][1]))) *cargv++ = argv[++i]; - else { + else if (!(strncmp("-target=",&argv[i][1],strlen("-target=")))) + *targv++ = argv[i++]; + + else if (!(strcmp("-target",&argv[i][1]))) { + *targv++ = argv[i++]; + *targv++ = argv[i++]; + + } else { for (option=options; option->long_name; option++) if (!(strcmp(option->long_name,&argv[i][1]))) break; -- cgit v1.2.3