diff --git a/NEWS.md b/NEWS.md
index 02063a41..6b5c4a20 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -14,6 +14,7 @@ Red Panda C++ Version 2.11
- fix: Correctly handle custom obj folder in the generated makefile.
- enhancement: Support compile asm files using nasm in the project.
- fix: Project parser should not parse non-c/cpp files.
+ - enhancement: Add "assembler" tab in the project options dialog's custom compiler parameters.
Red Panda C++ Version 2.10
diff --git a/RedPandaIDE/compiler/projectcompiler.cpp b/RedPandaIDE/compiler/projectcompiler.cpp
index 5978d2cc..6b06bf90 100644
--- a/RedPandaIDE/compiler/projectcompiler.cpp
+++ b/RedPandaIDE/compiler/projectcompiler.cpp
@@ -289,11 +289,11 @@ void ProjectCompiler::writeMakeDefines(QFile &file)
if (compilerSet()->canAssemble() &&
Settings::CompilerSets::isTarget64Bit(compilerSet()->target())) {
if (mProject->getCompileOption(CC_CMD_OPT_POINTER_SIZE)=="32")
- writeln(file,"ASMFLAGS = -f win32");
+ writeln(file,"ASMFLAGS = -f win32 " + mProject->options().assemblerArgs);
else
- writeln(file,"ASMFLAGS = -f win64");
+ writeln(file,"ASMFLAGS = -f win64 " + mProject->options().assemblerArgs);
} else {
- writeln(file,"ASMFLAGS = -f win32");
+ writeln(file,"ASMFLAGS = -f win32 " + mProject->options().assemblerArgs);
}
#elif defined(Q_OS_LINUX)
writeln(file,"ASMFLAGS = -f elf64");
@@ -496,7 +496,7 @@ void ProjectCompiler::writeMakeObjFilesRules(QFile &file)
}
} else if (fileType==FileType::ASM) {
if (!mOnlyCheckSyntax) {
- writeln(file, "\t$(ASM) $(ASMFLAGS) " + genMakePath1(shortFileName) + " -o " + objFileName2);
+ writeln(file, "\t$(ASM) " + genMakePath1(shortFileName) + " -o " + objFileName2 + " $(ASMFLAGS) ");
}
}
}
diff --git a/RedPandaIDE/project.cpp b/RedPandaIDE/project.cpp
index 29ee4f15..d97af71a 100644
--- a/RedPandaIDE/project.cpp
+++ b/RedPandaIDE/project.cpp
@@ -1035,6 +1035,8 @@ bool Project::saveAsTemplate(const QString &templateFolder,
ini->SetValue("Project", "Linker",mOptions.linkerCmd.toUtf8());
if (!mOptions.resourceCmd.isEmpty())
ini->SetValue("Project", "ResourceCommand",mOptions.resourceCmd.toUtf8());
+ if (!mOptions.assemblerArgs.isEmpty())
+ ini->SetValue("Project", "AssemblerArgs",mOptions.assemblerArgs.toUtf8());
ini->SetBoolValue("Project", "IsCpp", mOptions.isCpp);
if (mOptions.includeVersionInfo)
ini->SetBoolValue("Project", "IncludeVersionInfo", true);
@@ -1133,6 +1135,7 @@ void Project::saveOptions()
ini.SetValue("Project","PrivateResource", toByteArray(mOptions.privateResource));
ini.SetValue("Project","Compiler", toByteArray(mOptions.compilerCmd));
ini.SetValue("Project","CppCompiler", toByteArray(mOptions.cppCompilerCmd));
+ ini.SetValue("Project","AssemblerArgs",toByteArray(mOptions.assemblerArgs));
ini.SetValue("Project","Linker", toByteArray(mOptions.linkerCmd));
ini.SetValue("Project", "ResourceCommand", toByteArray(mOptions.resourceCmd));
ini.SetLongValue("Project","IsCpp", mOptions.isCpp);
@@ -1940,6 +1943,7 @@ void Project::loadOptions(SimpleIni& ini)
mOptions.cppCompilerCmd = fromByteArray(ini.GetValue("Project", "CppCompiler", ""));
mOptions.linkerCmd = fromByteArray(ini.GetValue("Project", "Linker", ""));
mOptions.resourceCmd = fromByteArray(ini.GetValue("Project", "ResourceCommand", ""));
+ mOptions.assemblerArgs = fromByteArray(ini.GetValue("Project","AssemblerArgs",""));
mOptions.binDirs = absolutePaths(fromByteArray(ini.GetValue("Project", "Bins", "")).split(";",
#if QT_VERSION >= QT_VERSION_CHECK(5,15,0)
Qt::SkipEmptyParts
diff --git a/RedPandaIDE/projectoptions.h b/RedPandaIDE/projectoptions.h
index eab0012b..f4d01618 100644
--- a/RedPandaIDE/projectoptions.h
+++ b/RedPandaIDE/projectoptions.h
@@ -67,6 +67,7 @@ struct ProjectOptions{
QString cppCompilerCmd;
QString linkerCmd;
QString resourceCmd;
+ QString assemblerArgs;
QStringList binDirs;
QStringList includeDirs;
QStringList libDirs;
diff --git a/RedPandaIDE/projecttemplate.cpp b/RedPandaIDE/projecttemplate.cpp
index ff739af4..2db1db03 100644
--- a/RedPandaIDE/projecttemplate.cpp
+++ b/RedPandaIDE/projecttemplate.cpp
@@ -138,6 +138,7 @@ void ProjectTemplate::readTemplateFile(const QString &fileName)
mOptions.cppCompilerCmd = fromByteArray(mIni->GetValue("Project", "CppCompiler", ""));
mOptions.linkerCmd = fromByteArray(mIni->GetValue("Project", "Linker",""));
mOptions.resourceCmd = fromByteArray(mIni->GetValue("Project", "ResourceCommand", ""));
+ mOptions.assemblerArgs = fromByteArray(mIni->GetValue("Project","AssemblerArgs",""));
mOptions.isCpp = mIni->GetBoolValue("Project", "IsCpp", false);
mOptions.includeVersionInfo = mIni->GetBoolValue("Project", "IncludeVersionInfo", false);
mOptions.supportXPThemes = mIni->GetBoolValue("Project", "SupportXPThemes", false);
diff --git a/RedPandaIDE/settingsdialog/projectcompileparamaterswidget.cpp b/RedPandaIDE/settingsdialog/projectcompileparamaterswidget.cpp
index 61a406b8..57b242c3 100644
--- a/RedPandaIDE/settingsdialog/projectcompileparamaterswidget.cpp
+++ b/RedPandaIDE/settingsdialog/projectcompileparamaterswidget.cpp
@@ -52,6 +52,7 @@ void ProjectCompileParamatersWidget::doLoad()
ui->txtCPPCompiler->setPlainText(pMainWindow->project()->options().cppCompilerCmd);
ui->txtLinker->setPlainText(pMainWindow->project()->options().linkerCmd);
ui->txtResource->setPlainText(pMainWindow->project()->options().resourceCmd);
+ ui->txtAssembler->setPlainText(pMainWindow->project()->options().assemblerArgs);
ui->grpAllowParallelBuilding->setChecked(pMainWindow->project()->options().allowParallelBuilding);
ui->spinParallelJobs->setValue(pMainWindow->project()->options().parellelBuildingJobs);
}
@@ -62,6 +63,7 @@ void ProjectCompileParamatersWidget::doSave()
pMainWindow->project()->options().cppCompilerCmd = ui->txtCPPCompiler->toPlainText();
pMainWindow->project()->options().linkerCmd = ui->txtLinker->toPlainText();
pMainWindow->project()->options().resourceCmd = ui->txtResource->toPlainText();
+ pMainWindow->project()->options().assemblerArgs = ui->txtAssembler->toPlainText();
pMainWindow->project()->options().allowParallelBuilding = ui->grpAllowParallelBuilding->isChecked();
pMainWindow->project()->options().parellelBuildingJobs = ui->spinParallelJobs->value();
pMainWindow->project()->saveOptions();
diff --git a/RedPandaIDE/settingsdialog/projectcompileparamaterswidget.ui b/RedPandaIDE/settingsdialog/projectcompileparamaterswidget.ui
index 5cecd205..3aeeff48 100644
--- a/RedPandaIDE/settingsdialog/projectcompileparamaterswidget.ui
+++ b/RedPandaIDE/settingsdialog/projectcompileparamaterswidget.ui
@@ -52,7 +52,7 @@
-
- 2
+ 4
@@ -181,6 +181,28 @@
+
+
+ Assembler
+
+
+
+ 5
+
+
+ 5
+
+
+ 5
+
+
+ 5
+
+ -
+
+
+
+
diff --git a/RedPandaIDE/translations/RedPandaIDE_pt_BR.ts b/RedPandaIDE/translations/RedPandaIDE_pt_BR.ts
index 18a8adf4..b175c0df 100644
--- a/RedPandaIDE/translations/RedPandaIDE_pt_BR.ts
+++ b/RedPandaIDE/translations/RedPandaIDE_pt_BR.ts
@@ -755,6 +755,14 @@
+
+
+ Assembler
+
+
+
+
+
CppRefacter
@@ -770,6 +778,14 @@
Novo símbolo já existente!
+
+
+
+
+
+
+
+
CustomMakefileInfoDialog
@@ -5413,6 +5429,10 @@
+
+
+ Assembler
+
ProjectCompiler
diff --git a/RedPandaIDE/translations/RedPandaIDE_zh_CN.ts b/RedPandaIDE/translations/RedPandaIDE_zh_CN.ts
index 60da914a..0117bf3d 100644
--- a/RedPandaIDE/translations/RedPandaIDE_zh_CN.ts
+++ b/RedPandaIDE/translations/RedPandaIDE_zh_CN.ts
@@ -761,12 +761,13 @@ p, li { white-space: pre-wrap; }
-
-
-
-
-
-
+
+
+
+
+
+
+
...
@@ -846,22 +847,27 @@ p, li { white-space: pre-wrap; }
程序
-
+
+
+ 汇编
+
+
+
输出
-
+
编译阶段
-
+
在完成预处理后停止编译
-
+
在完成编译仪式(compilation proper)后停止。
@@ -870,12 +876,12 @@ p, li { white-space: pre-wrap; }
在完成汇编后停止。
-
+
链接得到可执行文件。
-
+
预处理输出后缀
@@ -884,12 +890,12 @@ p, li { white-space: pre-wrap; }
编译输出后缀
-
+
编译仪式(Compilation proper)输出后缀
-
+
可执行文件后缀
@@ -898,37 +904,37 @@ p, li { white-space: pre-wrap; }
选项
-
+
gdb
-
+
gdb server
-
+
资源编辑器(winres)
-
+
C++编译器(g++)
-
+
选择C++编译器
-
+
选择C编译器
-
+
C编译器(gcc)
@@ -937,42 +943,42 @@ p, li { white-space: pre-wrap; }
调试器(gdb)
-
+
性能分析器(gprof)
-
+
-
+
选择make
-
+
选择调试器
-
+
选择资源编译器
-
+
选择性能分析器
-
+
确认
-
+
Red Panda C++ will clear current compiler list and search for compilers in the following locations:
'%1'
@@ -991,110 +997,127 @@ Are you really want to continue?
UTF-8
-
+
小熊猫C++ 将会清除现有的编译器配置列表,然后在PATH路径中搜索gcc编译器.<br />你确定要继续吗?
-
-
+
+
失败
-
-
+
+
找不到编译器
-
-
+
+
编译器配置名称
-
+
名称
-
+
编译器所在文件夹
-
+
新名称
-
+
定位C编译器
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
可执行文件 (*.exe)
-
+
定位C++编译器
-
+
定位make程序
-
+
定位gdb程序
-
+
定位gdb server程序
-
+
定位windres程序
-
+
定位gprof程序
+
+
+
+
+
CppRefacter
-
-
-
-
+
+
+
+
重命名符号失败
-
+
无法重命名不在本文件中定义的符号
-
+
新符号名称已被使用!
+
+
+
+
+ 正在查找...
+
+
+
+
+ 中止
+
CustomMakefileInfoDialog
@@ -1379,13 +1402,13 @@ Are you really want to continue?
失败
-
-
-
-
-
-
-
+
+
+
+
+
+
+
错误
@@ -1395,7 +1418,7 @@ Are you really want to continue?
-
+
载入文件错误
@@ -1424,44 +1447,44 @@ Are you really want to continue?
继续保存?
-
+
另存为
-
+
文件%1已经被打开!
-
+
要复制的内容超过了行数限制!
-
+
要复制的内容超过了字符数限制!
-
+
要剪切的内容超过了行数限制!
-
+
要剪切的内容超过了字符数限制!
-
+
打印文档
-
-
-
+
+
+
Ctrl+单击以获取更多信息
@@ -1470,27 +1493,27 @@ Are you really want to continue?
未找到符号'%1'!
-
+
找不到astyle程序
-
+
找不到astyle程序"%1".
-
+
断点条件
-
+
输入当前断点的生效条件:
-
+
只读
@@ -4154,11 +4177,11 @@ Are you really want to continue?
-
-
+
-
-
+
+
+
编译器
@@ -4232,7 +4255,7 @@ Are you really want to continue?
-
+
调试主控台
@@ -4366,8 +4389,8 @@ Are you really want to continue?
-
-
+
+
编译
@@ -4444,9 +4467,9 @@ Are you really want to continue?
-
-
-
+
+
+
复制
@@ -4457,7 +4480,7 @@ Are you really want to continue?
-
+
粘贴
@@ -4468,8 +4491,8 @@ Are you really want to continue?
-
-
+
+
选择全部
@@ -4595,38 +4618,38 @@ Are you really want to continue?
-
-
+
+
新建试题集
-
+
添加试题
-
+
删除试题
-
-
+
+
保存试题集
-
-
+
+
载入试题集
@@ -4674,7 +4697,7 @@ Are you really want to continue?
-
+
Remove Problem Set
删除试题集
@@ -4682,21 +4705,21 @@ Are you really want to continue?
-
+
打开答案源代码文件
-
+
Run Current Case
运行所有案例
-
+
测试案例验证选项
@@ -4756,15 +4779,15 @@ Are you really want to continue?
-
-
+
+
导入FPS试题集
-
-
+
+
导出FPS试题集
@@ -5006,7 +5029,7 @@ Are you really want to continue?
-
+
删除所有断点
@@ -5227,7 +5250,7 @@ Are you really want to continue?
-
+
新建文件
@@ -5268,7 +5291,7 @@ Are you really want to continue?
-
+
重命名符号
@@ -5289,13 +5312,13 @@ Are you really want to continue?
-
+
导出为RTF
-
+
导出为HTML
@@ -5564,7 +5587,7 @@ Are you really want to continue?
运行参数...
-
+
文件编码
@@ -5636,75 +5659,75 @@ Are you really want to continue?
你确定要关闭'%1'吗?
-
-
+
+
确认
-
-
-
+
+
+
源文件尚未编译。
-
-
+
+
现在编译?
-
-
+
+
源文件比可执行程序新。
-
+
重新编译?
-
-
-
-
+
+
+
+
错误的编译器设置
-
-
-
-
+
+
+
+
编译器被设置为不生成可执行文件。
-
-
+
+
我们需要可执行文件来运行试题案例。
-
+
无编译器设置
-
+
没有配置编译器设置。
-
+
无法启动调试器
-
-
+
+
启用调试参数
@@ -5713,54 +5736,54 @@ Are you really want to continue?
当前编译设置中未启用调试选项(-g3),或启用了信息剥除选项(-s)<br /><br/>是否纠正这一问题?
-
+
项目尚未构建
-
+
项目尚未构建。是否构建?
-
+
宿主程序不存在
-
+
动态链接库(DLL)需要一个宿主程序来运行。
-
+
但它不存在。
-
+
宿主程序不存在
-
+
宿主程序'%1'不存在。
-
-
+
+
请在调试前改正设置。
-
+
重新编译?
-
-
+
+
保存上次打开信息失败
@@ -5769,60 +5792,60 @@ Are you really want to continue?
无法删除旧上次打开信息文件'%1'
-
+
无法保存上次打开信息文件'%1'
-
-
+
+
载入上次打开信息失败
-
-
+
+
无法载入上次打开信息文件'%1'
-
+
打开源代码文件
-
-
+
+
批量设置案例
-
+
显示详细调试器日志
-
+
全部复制
-
+
跳转到行
-
+
行
-
+
模板已存在
-
+
模板%1已存在。是否覆盖?
@@ -5830,9 +5853,9 @@ Are you really want to continue?
-
-
-
+
+
+
清除
@@ -5848,7 +5871,7 @@ Are you really want to continue?
-
+
试题集%1
@@ -5869,68 +5892,68 @@ Are you really want to continue?
或者选择使用其他的网络端口。
-
-
+
+
重新构建项目
-
-
+
+
项目已经被修改过,是否需要重新构建?
-
+
自动保存出错
-
+
自动保存"%1"到"%2"失败:%3
-
+
试题属性...
-
+
设置试题集名称
-
+
试题集名称:
-
+
删除
-
+
删除全部书签
-
+
修改描述
-
-
-
+
+
+
书签描述
-
-
-
+
+
+
描述:
@@ -5939,65 +5962,65 @@ Are you really want to continue?
在调试主控台中显示调试器输出
-
+
清除这次搜索
-
+
删除所有搜索
-
+
断点条件...
-
+
断点条件
-
+
输入当前断点的生效条件:
-
+
Remove all breakpoints
删除所有断点
-
+
删除当前断点
-
+
重命名文件
-
-
+
+
添加文件夹
-
-
+
+
新文件夹
-
+
文件夹:
-
+
重命名
@@ -6006,23 +6029,23 @@ Are you really want to continue?
您没有使用DEBUG编译配置。
-
-
+
+
要现在去修改设置吗?
-
+
修改试题集名称
-
+
无法写入配置文件'%1'。
-
+
修改试题名称
@@ -6032,141 +6055,141 @@ Are you really want to continue?
行: %1 列: %2 总行数: %3
-
+
跳转到试题网址
-
+
添加试题案例
-
+
运行当前案例
-
+
删除文件夹
-
+
切换为普通视图
-
+
切换为自定义视图
-
+
按类型排序
-
+
按名称排序
-
+
显示继承的成员
-
+
跳转到声明处
-
+
跳转到定义处
-
+
仅当前文件
-
+
整个项目
-
-
+
+
新建文件夹
-
+
重命名
-
-
-
-
+
+
+
+
删除
-
+
在编辑器中打开
-
+
使用外部程序打开
-
+
在终端中打开
-
+
在Windows浏览器中打开
-
+
字符集
-
+
转换为%1编码
-
+
换行符
-
+
已自动保存%1个文件
-
+
设置答案源代码...
-
+
选择其他文件...
-
+
选择答案源代码文件
@@ -6175,17 +6198,17 @@ Are you really want to continue?
中止
-
+
FPS试题集文件(*.fps;*.xml)
-
+
FPS试题集文件(*.fps)
-
+
导出时出错
@@ -6195,7 +6218,7 @@ Are you really want to continue?
C/C++源代码文件 (*.c *.cpp *.cc *.cxx)
-
+
新建文件夹%1
@@ -6208,68 +6231,68 @@ Are you really want to continue?
无标题%1
-
+
你真的要删除%1吗?
-
+
你真的要删除%1个文件吗?
-
+
保存项目
-
+
项目'%1'有改动。
-
-
+
+
需要保存吗?
-
-
+
+
文件已发生变化
-
+
新建项目文件?
-
+
您是否要将新建的文件加入项目?
-
-
-
-
+
+
+
+
保存失败
-
+
改变项目编译器配置集
-
+
改变项目的编译器配置集会导致所有的自定义编译器选项被重置。
-
-
+
+
你真的想要那么做吗?
@@ -6278,12 +6301,12 @@ Are you really want to continue?
批量设置案例
-
+
选择输入数据文件
-
+
输入数据文件 (*.in)
@@ -6292,78 +6315,78 @@ Are you really want to continue?
无标题%1
-
+
修改监视表达式
-
+
监视表达式
-
+
您真的要清除该文件的所有断点吗?
-
+
新建项目
-
+
关闭'%1'以打开新项目?
-
+
文件夹不存在
-
+
文件夹'%1'不存在。是否创建?
-
+
无法创建文件夹
-
+
创建文件夹'%1'失败。
-
+
-
+
文件夹%1不是空的。
-
+
你真的要删除它吗?
-
+
改变工作文件夹
-
+
File '%1' is not in the current working folder
文件'%1'不在当前工作文件夹中。
-
+
是否将工作文件夹改设为'%1'?
@@ -6372,28 +6395,28 @@ Are you really want to continue?
正在删除试题...
-
+
无法提交
-
+
Git需要用信息进行提交。
-
+
选择输入数据文件
-
-
+
+
所有文件 (*.*)
-
+
Choose Expected Input Data File
选择期望输出文件
@@ -6405,59 +6428,59 @@ Are you really want to continue?
-
+
选择工作文件夹
-
-
+
+
头文件已存在
-
-
+
+
头文件"%1"已存在!
-
+
源文件已存在!
-
+
源文件"%1"已存在!
-
+
无法提交!
-
+
下列文件处于冲突状态,请解决后重新添加和提交:
-
+
提交信息
-
+
提交信息:
-
+
提交失败
-
+
提交信息不能为空!
@@ -6466,22 +6489,22 @@ Are you really want to continue?
小熊猫Dev-C++项目文件 (*.dev)
-
+
新建项目失败
-
+
无法使用模板创建项目
-
+
删除文件
-
+
同时从硬盘上删除文件?
@@ -6490,129 +6513,129 @@ Are you really want to continue?
无标题
-
+
新的项目文件名
-
+
文件名:
-
+
文件已存在!
-
+
文件'%1'已经存在!
-
+
添加到项目
-
-
+
+
您没有使用Debug编译器设置。
-
+
请在工具栏中选择Debug编译器配置集,或者在编译器配置集设置中启用“生成调试信息(-g3)”并禁用“剥除附加信息(-s)”选项。
-
+
请在工具栏中选择Debug编译器配置集,或者在“编译器配置集”设置的“编译/链接选项”页中<b>启用</b>“生成调试信息(-g3)”、<b>禁用</b>“剥除附件信息(-3)”。
-
+
C/C++源代码文件 (*.c *.cpp *.cc *.cxx)
-
+
本操作会删除此试题的所有案例。
-
+
小熊猫C++项目文件(*.dev)
-
+
重命名出错
-
+
符号'%1'在系统头文件中定义,无法修改。
-
+
新名称
-
-
-
-
+
+
+
+
替换出错
-
+
无法打开文件'%1'进行替换!
-
+
内容和上次查找时不一致。
-
+
RTF格式文件 (*.rtf)
-
+
HTML文件 (*.html)
-
+
当前的试题集不是空的。
-
+
试题%1
-
-
+
+
试题集文件 (*.pbs)
-
-
+
+
载入失败
-
-
+
+
试题案例%1
@@ -6623,14 +6646,14 @@ Are you really want to continue?
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
错误
@@ -6651,85 +6674,85 @@ Are you really want to continue?
清除历史
-
-
+
+
版本控制
-
+
磁盘文件'%1'已被修改。
-
+
是否重新读取它的内容?
-
+
磁盘文件'%1'已被删除。
-
+
是否保持它在小熊猫C++中打开的编辑窗口?
-
+
打开
-
+
编译失败
-
+
运行失败
-
-
-
-
+
+
+
+
确认转换
-
-
-
-
+
+
+
+
当前编辑器中的文件将会使用%1编码保存。<br />这项操作无法被撤回。<br />你确定要继续吗?
-
+
新监视表达式
-
+
输入监视表达式
-
+
(%1/%2)正在解析文件"%3"
-
-
+
+
完成%1个文件的解析,用时%2秒
-
+
(每秒%1个文件)
@@ -6987,32 +7010,32 @@ Are you really want to continue?
案例运行超时
-
+
运行时间超限!
-
+
运行内存超限!
-
+
无法启动程序运行进程'%1'。
-
+
waitFor()函数等待超时。
-
+
在向程序运行进程写入内容时出错。
-
+
在从程序运行进程读取内容时出错。
@@ -7132,105 +7155,105 @@ Are you really want to continue?
无法保存文件'%1'.
-
+
载入文件错误
-
-
+
+
错误
-
+
无法创建文件夹%1
-
+
警告
-
-
+
+
无法保存文件%1
-
+
文件已存在
-
+
文件'%1'已在项目中
-
+
项目已升级
-
+
已成功将项目升级到新的格式
-
+
旧项目文件备份在'%1'。
-
+
头文件
-
+
源文件
-
+
其他文件
-
+
设置需要更新
-
+
The compiler settings format of Dev-C++ has changed.
小熊猫C++的编译器设置格式已发生改变。
-
+
请在项目 >> 项目属性 >> 编译器设置中修改您的设置并保存您的项目
-
+
未找到编译器
-
+
您为该项目设置的编译器不存在。
-
+
它将会被全局编译器设置代替。
-
+
Developed using the Red Panda Dev-C++ IDE
使用小熊猫C++编辑器开发
@@ -7311,7 +7334,7 @@ Are you really want to continue?
-
+
添加库文件
@@ -7321,8 +7344,13 @@ Are you really want to continue?
资源
-
+
+
+ 汇编
+
+
+
库文件
@@ -7345,47 +7373,47 @@ Are you really want to continue?
无法写入文件'%1'!
-
+
- 资源文件: %1
-
+
正在编译项目修改...
-
+
- 项目文件名: %1
-
+
- 编译器配置: %1
-
+
Make程序“%1”不存在!
-
+
请检查编译器配置中的“程序”页。
-
+
正在处理makefile...
-
+
- makefile处理器: %1
-
+
- 命令: %1 %2
@@ -7727,32 +7755,32 @@ Are you really want to continue?
ProjectModel
-
+
文件已存在
-
+
文件'%1'已存在。是否删除?
-
+
删除失败
-
+
无法删除文件'%1'
-
+
改名失败
-
+
无法将文件'%1'改名为'%2'
@@ -8178,7 +8206,7 @@ Are you really want to continue?
生成调试信息(-g3)
-
+
您同意小熊猫C++在PATH路径中寻找gcc编译器吗?
@@ -8291,7 +8319,7 @@ Are you really want to continue?
只生成汇编代码(-S)
-
+
确认
@@ -8312,13 +8340,13 @@ Are you really want to continue?
如果仍然保留这些设置,可能会导致编译错误。<br /><br />请选择“是”,除非您清楚的知道选择“否”的后果,
-
-
+
+
未配置编译器设置。
-
+
您需要小熊猫C++在下列位置搜索编译器吗:<br />%1<br />%2
@@ -8343,12 +8371,12 @@ Are you really want to continue?
C++包含文件
-
+
删除
-
+
您确定要删除"%1"吗?
@@ -8369,22 +8397,22 @@ Are you really want to continue?
下标"%1"越界
-
+
字节
-
+
KB
-
+
MB
-
+
GB
@@ -8698,7 +8726,7 @@ Are you really want to continue?
-
+
无法写入文件'%1'.
@@ -9417,18 +9445,18 @@ Are you really want to continue?
性能
-
-
-
+
+
+
编译器配置集
-
-
-
+
+
+
@@ -9440,7 +9468,7 @@ Are you really want to continue?
自动链接
-
+
@@ -9517,15 +9545,15 @@ Are you really want to continue?
杂项
-
-
+
+
程序运行
-
+
试题集
diff --git a/RedPandaIDE/translations/RedPandaIDE_zh_TW.ts b/RedPandaIDE/translations/RedPandaIDE_zh_TW.ts
index bbd0a07e..6180b817 100644
--- a/RedPandaIDE/translations/RedPandaIDE_zh_TW.ts
+++ b/RedPandaIDE/translations/RedPandaIDE_zh_TW.ts
@@ -664,6 +664,14 @@
+
+
+
+
+
+
+
+
CppRefacter
@@ -679,6 +687,14 @@
+
+
+
+
+
+
+
+
CustomMakefileInfoDialog
@@ -5190,6 +5206,10 @@
+
+
+
+
ProjectCompiler