diff options
author | midipix <writeonce@midipix.org> | 2019-06-29 10:32:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-06-29 10:32:11 +0000 |
commit | 6e6b0ff289dc734aee33ff3db68aa1c998aaba67 (patch) | |
tree | fba3bdd4172a896a517d59958e6b43b902bc3cb5 /src/driver/slbt_driver_ctx.c | |
parent | 50a5526f8e7803dbbb77f176b708b35cf412ad99 (diff) | |
download | slibtool-6e6b0ff289dc734aee33ff3db68aa1c998aaba67.tar.bz2 slibtool-6e6b0ff289dc734aee33ff3db68aa1c998aaba67.tar.xz |
driver: added FC support.
Diffstat (limited to 'src/driver/slbt_driver_ctx.c')
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index ec47db8..22eb0bc 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -1324,6 +1324,9 @@ int slbt_get_driver_ctx( else if (!strcmp("CXX",entry->arg)) cctx.tag = SLBT_TAG_CXX; + else if (!strcmp("FC",entry->arg)) + cctx.tag = SLBT_TAG_FC; + else if (!strcmp("F77",entry->arg)) cctx.tag = SLBT_TAG_F77; |