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

[NSE-126] set default codegen opt to O1 #977

Merged
merged 1 commit into from
Jun 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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