如何在Qt中禁用mingw的优化

时间:2018-05-17 02:15:17

标签: gcc mingw qmake

我试图在发布模式下关闭C代码的优化,如:

FileWriter

但是

try {
    File folder = new File("/temp/temp");
    folder.mkdirs();
    // then create a file object at this location
    File file = new File(folder, contador + ".txt");

    escritor = new FileWriter(file);
    // the rest of your code
}
catch (Exception e) {
}

QMAKE_CFLAGS -= -O2 QMAKE_CFLAGS += -O0 未删除。

1 个答案:

答案 0 :(得分:0)

qmake-how-to-remove-compiler-flag会给你一些提示。

一个原因可能是在执行{{1}}时,-O2尚未添加到编译器标志列表中。