зеркало из https://github.com/mono/mail-archives.git
183 строки
4.5 KiB
HTML
183 строки
4.5 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [Mono-bugs] [Bug 646997] New: mcs doesn't emit the ILOnly flag when using /platform:x86
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%20646997%5D%20New%3A%20mcs%20doesn%27t%20emit%20the%20ILOnly%20flag%20when%0A%20using%20/platform%3Ax86&In-Reply-To=">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
|
<LINK REL="Previous" HREF="105509.html">
|
|
<LINK REL="Next" HREF="104960.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[Mono-bugs] [Bug 646997] New: mcs doesn't emit the ILOnly flag when using /platform:x86</H1>
|
|
<B>bugzilla_noreply at novell.com</B>
|
|
<A HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%20646997%5D%20New%3A%20mcs%20doesn%27t%20emit%20the%20ILOnly%20flag%20when%0A%20using%20/platform%3Ax86&In-Reply-To="
|
|
TITLE="[Mono-bugs] [Bug 646997] New: mcs doesn't emit the ILOnly flag when using /platform:x86">bugzilla_noreply at novell.com
|
|
</A><BR>
|
|
<I>Fri Oct 15 09:48:34 EDT 2010</I>
|
|
<P><UL>
|
|
<LI>Previous message: <A HREF="105509.html">[Mono-bugs] [Bug 646984] Stylesheet inclusion inconsistency between Mono and MS.NET
|
|
</A></li>
|
|
<LI>Next message: <A HREF="104960.html">[Mono-bugs] [Bug 646997] mcs doesn't emit the ILOnly flag when using /platform:x86
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#104955">[ date ]</a>
|
|
<a href="thread.html#104955">[ thread ]</a>
|
|
<a href="subject.html#104955">[ subject ]</a>
|
|
<a href="author.html#104955">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
<HR>
|
|
<!--beginarticle-->
|
|
<PRE>
|
|
<A HREF="https://bugzilla.novell.com/show_bug.cgi?id=646997">https://bugzilla.novell.com/show_bug.cgi?id=646997</A>
|
|
|
|
<A HREF="https://bugzilla.novell.com/show_bug.cgi?id=646997#c0">https://bugzilla.novell.com/show_bug.cgi?id=646997#c0</A>
|
|
|
|
|
|
Summary: mcs doesn't emit the ILOnly flag when using
|
|
/platform:x86
|
|
Classification: Mono
|
|
Product: Mono: Compilers
|
|
Version: SVN
|
|
Platform: Other
|
|
OS/Version: openSUSE 11.3
|
|
Status: NEW
|
|
Severity: Normal
|
|
Priority: P5 - None
|
|
Component: C#
|
|
AssignedTo: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">mono-bugs at lists.ximian.com</A>
|
|
ReportedBy: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">lluis at novell.com</A>
|
|
QAContact: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">mono-bugs at lists.ximian.com</A>
|
|
Found By: ---
|
|
Blocker: ---
|
|
|
|
|
|
When compiling an assembly using the /platform:x86 option, mcs should include
|
|
both ILOnly and F32BitsRequired flags in the header.
|
|
|
|
Test case:
|
|
|
|
using System;
|
|
using Mono.Cecil;
|
|
|
|
namespace borra439
|
|
{
|
|
class MainClass
|
|
{
|
|
public static void Main (string[] args)
|
|
{
|
|
AssemblyDefinition asm = AssemblyFactory.GetAssembly (typeof
|
|
(MainClass).Assembly.Location);
|
|
Console.WriteLine (asm.MainModule.Image.CLIHeader.Flags);
|
|
}
|
|
}
|
|
}
|
|
|
|
Compile the above app using the /platform:x86 compiler option. It will print
|
|
"F32BitsRequired" but it should print "ILOnly, F32BitsRequired".
|
|
|
|
--
|
|
Configure bugmail: <A HREF="https://bugzilla.novell.com/userprefs.cgi?tab=email">https://bugzilla.novell.com/userprefs.cgi?tab=email</A>
|
|
------- You are receiving this mail because: -------
|
|
You are the QA contact for the bug.
|
|
You are the assignee for the bug.
|
|
</PRE>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--endarticle-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI>Previous message: <A HREF="105509.html">[Mono-bugs] [Bug 646984] Stylesheet inclusion inconsistency between Mono and MS.NET
|
|
</A></li>
|
|
<LI>Next message: <A HREF="104960.html">[Mono-bugs] [Bug 646997] mcs doesn't emit the ILOnly flag when using /platform:x86
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#104955">[ date ]</a>
|
|
<a href="thread.html#104955">[ thread ]</a>
|
|
<a href="subject.html#104955">[ subject ]</a>
|
|
<a href="author.html#104955">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
|
|
<hr>
|
|
<a href="http://lists.ximian.com/mailman/listinfo/mono-bugs">More information about the mono-bugs
|
|
mailing list</a><br>
|
|
</body></html>
|