summaryrefslogtreecommitdiff
path: root/src/driver
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-02-14 20:55:49 +0000
committermidipix <writeonce@midipix.org>2024-02-14 20:55:49 +0000
commitfb5e7fb8cff2f935c814642502aba5b0d4e8c040 (patch)
treef6d5c2d79b0cc093c42c23755b6c62e55fafd841 /src/driver
parent36d22a5a10939bd29cb7dc3de8d0435a025b55e3 (diff)
downloadslibtool-fb5e7fb8cff2f935c814642502aba5b0d4e8c040.tar.bz2
slibtool-fb5e7fb8cff2f935c814642502aba5b0d4e8c040.tar.xz
driver: added --tag=ASM support.
Diffstat (limited to 'src/driver')
-rw-r--r--src/driver/slbt_driver_ctx.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c
index 52aa0af..82514bc 100644
--- a/src/driver/slbt_driver_ctx.c
+++ b/src/driver/slbt_driver_ctx.c
@@ -482,6 +482,9 @@ int slbt_get_driver_ctx(
else if (!strcmp("F77",entry->arg))
cctx.tag = SLBT_TAG_F77;
+ else if (!strcmp("ASM",entry->arg))
+ cctx.tag = SLBT_TAG_ASM;
+
else if (!strcmp("NASM",entry->arg))
cctx.tag = SLBT_TAG_NASM;