From 9c664df6999ec7a3a4bf3bc544605a40701a487d Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 19 Mar 2016 10:55:22 -0400 Subject: driver: added -rpath support. --- src/driver/slbt_driver_ctx.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/driver/slbt_driver_ctx.c') diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 05cf04e..e4d2eda 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -217,6 +217,9 @@ static int slbt_split_argv( *targv++ = argv[i++]; *targv++ = argv[i++]; + } else if (!(strcmp("rpath",&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]))) @@ -517,6 +520,10 @@ int slbt_get_driver_ctx( cctx.output = entry->arg; break; + case TAG_RPATH: + cctx.rpath = entry->arg; + break; + case TAG_TARGET: cctx.target = entry->arg; break; -- cgit v1.2.3