summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-04-19 20:41:18 +0200
committerAndy Polyakov <appro@openssl.org>2016-04-20 09:51:37 +0200
commit38c5674dda8333288aa5d57ccd046203803aa81f (patch)
tree426ad7eb7f5465d0b21ad6f1ad0f4779d061e721
parentd405aa2ff265965c71ce7331cf0e49d634a06924 (diff)
Configuration: add unsupported masm target.
Reviewed-by: Richard Levitte <levitte@openssl.org>
-rw-r--r--Configurations/50-masm.conf17
1 files changed, 17 insertions, 0 deletions
diff --git a/Configurations/50-masm.conf b/Configurations/50-masm.conf
new file mode 100644
index 0000000000..8dbaa764fd
--- /dev/null
+++ b/Configurations/50-masm.conf
@@ -0,0 +1,17 @@
+# We can't make commitment to supporting Microsoft assembler,
+# because it would mean supporting all masm versions. This in
+# in turn is because masm is not really an interchangeable option,
+# while users tend to have reasons to stick with specific Visual
+# Studio versions. It's usually lesser hassle to make it work
+# with latest assembler, but tweaking for older versions had
+# proven to be daunting task. This is experimental target, for
+# production builds stick with [up-to-date version of] nasm.
+
+%targets = (
+ "VC-WIN64A-masm" => {
+ inherit_from => [ "VC-WIN64A" ],
+ as => "ml64",
+ asflags => "/c /Cp /Cx /Zi",
+ asoutflags => "/Fo",
+ },
+);