We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bbc16e commit 2d44142Copy full SHA for 2d44142
tool/cosmocc/bin/cosmocc
@@ -141,6 +141,18 @@ for x; do
141
elif [ x"$x" != x"${x#-MF}" ]; then # startswith(x, "-MF")
142
DEPENDENCY_OUTPUT=${x#-MF}
143
continue
144
+ elif [ x"$x" = x"-MQ" ]; then
145
+ NEED_DEPENDENCY_OUTPUT=1
146
+ continue
147
+ elif [ x"$x" = x"-Wl,--version" ]; then
148
+ cat <<EOF
149
+GNU ld (GNU Binutils) 2.42
150
+Copyright (C) 2024 Free Software Foundation, Inc.
151
+This program is free software; you may redistribute it under the terms of
152
+the GNU General Public License version 3 or (at your option) a later version.
153
+This program has absolutely no warranty.
154
+EOF
155
+ exit
156
elif [ x"$x" != x"${x#-O}" ]; then # startswith(x, "-O")
157
OPT=$x
158
elif [ x"$x" = x"-c" ]; then
0 commit comments