summaryrefslogtreecommitdiff
path: root/src/ctor.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2023-01-14 12:05:23 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2023-01-14 12:10:58 +0100
commit321f25af1ba33d8409cd294b4f50d0d3e79cf3bd (patch)
tree586c8297ca89e477ae8dfc228dd71f0b15f96faa /src/ctor.h
parentd5c88fedf517e738490c32fa95097e03178903fe (diff)
Add ar_flag support for ar tool, replacing hardcoded values.HEADmaster
Diffstat (limited to 'src/ctor.h')
-rw-r--r--src/ctor.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ctor.h b/src/ctor.h
index 36aa46a..b8b3ae6 100644
--- a/src/ctor.h
+++ b/src/ctor.h
@@ -120,6 +120,11 @@ enum class ld_opt
enum class ar_opt
{
// gcc/clang
+ replace, // -r
+ add_index, // -s
+ create, // -c
+ output, // <arg>
+
custom, // entire option taken verbatim from <arg>
};