removed hardcoded file compilation options

This commit is contained in:
Vaclav Barta
2022-02-07 15:03:47 +01:00
parent 94e126782b
commit 1a4d53cfbc

View File

@@ -38,7 +38,6 @@ export const compileCode = async (activeId: number) => {
{
type: "c",
name: state.files[activeId].name,
options: "-O0",
src: state.files[activeId].content,
},
],
@@ -87,4 +86,4 @@ export const compileCode = async (activeId: number) => {
});
state.compiling = false;
}
};
};