Skip to content

Commit

Permalink
Added .out to output filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Samson committed Nov 28, 2016
1 parent f148af5 commit 68a9772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ev3DL/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private void btnBuild_Click(object sender, EventArgs e)
DialogResult r = folderBrowserDialog1.ShowDialog(this);
if (r == DialogResult.OK)
docpath = folderBrowserDialog1.SelectedPath+"\\";
oname = docpath + oname;
oname = docpath + oname + ".out";
BuildProcess.StartInfo.FileName = @"C:\CSLITE\bin\arm-none-linux-gnueabi-gcc.exe";
string args = string.Format("-I \"C:\\Program Files (x86)\\Ev3DL\\lmsapi\" -static -o \"{0}\" {1} \"{2}\"",oname,includes,tbFile.Text);
BuildProcess.StartInfo.Arguments = args;
Expand Down

0 comments on commit 68a9772

Please # to comment.