Compiler Flags while exporting model

Hi

When we try to export a model using tvm relay we build the runtime and export it using the cross compiler as shown below: target = “llvm -mtriple=aarch64-linux-gnu -mattr=+neon” lib = relay.build(mod, target = target) lib.export_library(os.path.join(curr_path, “arm_lib/saxpy”+"_arm_sys.so" ), cc=‘aarch64-linux-gnu-g++’)

I wanted to know if we can specify compiler flags that the export factory can use while building the shared object .

For example, I would like to use '-march=armv8-a+sve' flag along with the aarch64-linux-gnu-g++ compiler so that the model is built with vector extensions enabled.

Any help regarding this will be great!

Thanks