Drop duplicate -optl's from GHC invocations
Compare changes
+ 2
− 2
@@ -186,8 +186,8 @@ $1_$2_$3_ALL_LD_OPTS = \
Previously the make build system would pass things like
-optl-optl-Wl,-x -optl-optl-Wl,noexecstack
to GHC. This would
naturally result in mass confusion as GHC would pass -optl-Wl,-x
to
GCC. GCC would in turn interpret this as -o ptl-Wl,-x
, setting the
output pass of the invocation.
The problem that -optl
was added to the command-line in two places in
the build system. Fix this.
Fixes #17385 (closed).