Commit f4e9fe06 by eqy Committed by Tianqi Chen

ignore model option in target (#889)

parent c6595dec
...@@ -85,7 +85,7 @@ void ParseLLVMTargetOptions(const std::string& target_str, ...@@ -85,7 +85,7 @@ void ParseLLVMTargetOptions(const std::string& target_str,
} else { } else {
LOG(FATAL) << "invalid -mfloat-abi option " << value; LOG(FATAL) << "invalid -mfloat-abi option " << value;
} }
} else if (key == "-device" || key == "-libs") { } else if (key == "-device" || key == "-libs" || key == "-model") {
// pass // pass
} else { } else {
LOG(FATAL) << "unknown option " << key; LOG(FATAL) << "unknown option " << key;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment