summaryrefslogtreecommitdiff
path: root/src/driver/slbt_driver_ctx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/driver/slbt_driver_ctx.c')
-rw-r--r--src/driver/slbt_driver_ctx.c7
1 files changed, 7 insertions, 0 deletions
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;