Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
set default codegen opt to O1 (#977)
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <[email protected]>
  • Loading branch information
zhouyuan authored Jun 20, 2022
1 parent 261345c commit 2d308ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ arrow::Status CompileCodes(std::string codes, std::string signature) {
}
std::string env_jar = std::string(env_jar_);

std::string env_codegen_option = " -O3 -march=native ";
std::string env_codegen_option = " -O1 -march=native ";
char* env_codegen_option_ = std::getenv("CODEGEN_OPTION");

if (env_codegen_option_ != nullptr) {
Expand Down

0 comments on commit 2d308ea

Please sign in to comment.