summaryrefslogtreecommitdiff
path: root/src/ctor.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2023-01-17 13:35:05 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2023-01-17 13:35:26 +0100
commit79c11f3dbaad391633c2678e85eeaba267df5ee1 (patch)
tree6993397fc0c68fdc41bfb9b9c621fde9a3a56b14 /src/ctor.h
parentc11bbf8455b065c22c7a2147b33fb6a9c8c43e11 (diff)
Recognize gcc and clang (not just their c++ variants) in tool-chain detection.
Diffstat (limited to 'src/ctor.h')
-rw-r--r--src/ctor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ctor.h b/src/ctor.h
index 9738949..4e0a247 100644
--- a/src/ctor.h
+++ b/src/ctor.h
@@ -122,10 +122,10 @@ enum class ld_opt
enum class ar_opt
{
// gcc/clang
- replace, // -r
- add_index, // -s
- create, // -c
- output, // <arg>
+ replace, // -r
+ add_index, // -s
+ create, // -c
+ output, // <arg>
custom, // entire option taken verbatim from <arg>
};