0

我很想解决一个小问题。我知道这不是调试可能出现警告的一段代码的最佳方法,但我喜欢在我的想法之间有一点中断的时候进行调试。我刚刚发现了 mono 以及编译在 Mac OS X Mountain Lion 上运行的 C# 代码的可能性。我将它集成到CodeRunner应用程序中,它可以正常工作。但是,如果代码中出现警告,则不起作用。

例如,我试图编译一个创建一个整数(仅此而已)的代码,但由于该警告,它没有进行调试。我收到此错误消息:

Untitled.cs(9,29): warning CS0219: The variable `test' is assigned but its value is never used
Cannot open assembly 'Compilation succeeded - 1 warning(s)
Untitled.exe': No such file or directory.

有人可能知道如何处理它。我知道这不是一个必不可少的功能,但即使使用一些未使用的变量,我也很想调试代码。

编译脚本文件的内容:

#!/bin/bash

enc[4]="UTF8"            # UTF-8
enc[10]="UTF16"            # UTF-16
enc[5]="ISO8859-1"        # ISO Latin 1
enc[9]="ISO8859-2"        # ISO Latin 2
enc[30]="MacRoman"        # Mac OS Roman
enc[12]="CP1252"        # Windows Latin 1
enc[3]="EUCJIS"            # Japanese (EUC)
enc[8]="SJIS"            # Japanese (Shift JIS)
enc[1]="ASCII"            # ASCII


rm -rf "$4"/csharp-compiled
mkdir "$4"/csharp-compiled
#mcs is the Mono CSharp Compiler

file="$1"
length=${#file}
first=`expr $length - 3`
classname=`echo "$file" | cut -c 1-"$first"`
#echo -out:"$4"/csharp-compiled/"$classname".exe "$1"
dmcs -out:"$4"/csharp-compiled/"$classname".exe "$1"
status=$?

if [ $status -ne 0 ]
then
exit $status
fi

#echo "$4"/csharp-compiled/

currentDir="$PWD"
cd "$4"/csharp-compiled/
files=`ls -1 *.exe`
status=$?
if [ $status -ne 0 ]
then
exit 1
fi

cd "$currentDir"
for file in $files
do
mv -f "$4"/csharp-compiled/$file "$file"
done

# Otherwise output the name of the input file without extension (this should be the same as the class name)
file="$1"
length=${#file}
first=`expr $length - 3`
classname=`echo "$file" | cut -c 1-"$first"`
echo $classname".exe"
exit 0
4

3 回答 3

1
dmcs -out:"$4"/csharp-compiled/"$classname".exe "$1"

dmcs将一些消息放在 stdout 上,一些放在 stderr 上。CodeRunner 期望 stdout 只包含输出文件名,没有其他内容,所以要做到这一点,>&2可以用来将其他所有内容重定向到 stderr。

dmcs -out:"$4"/csharp-compiled/"$classname".exe "$1" >&2
于 2012-10-02T19:45:49.087 回答
1

这适用于我在 Sierra 上使用当前的 Mono 和 CodeRunner 版本:

语言编译脚本:

file=$CR_FILENAME
/Library/Frameworks/Mono.framework/Versions/Current/bin/mcs "$CR_FILENAME" >&2
status=$?
if [ $status -ne 0 ]
then
exit $status
fi
echo $file | sed -e "s/\.cs/.exe/"
exit 0

运行命令:

PATH="/Library/Frameworks/Mono.framework/Versions/Current/bin:$PATH"; mono $compiler
于 2017-01-03T14:00:58.003 回答
0

在 MS 编译器中,有一种隐藏警告的方法

Pragma 警告预处理器指令

#pragma warning disable 219
var test = "";
#pragma warning restore 219

它可能会帮助你。

于 2012-10-02T14:13:47.897 回答