diff --git a/src/runtime/hexagon/hexagon_module.h b/src/runtime/hexagon/hexagon_module.h index 8fcc3445961a..96595df470e3 100644 --- a/src/runtime/hexagon/hexagon_module.h +++ b/src/runtime/hexagon/hexagon_module.h @@ -64,7 +64,8 @@ class HexagonModuleNode : public runtime::ModuleNode { const char* type_key() const final { return "hexagon"; } /*! \brief Get the property of the runtime module .*/ int GetPropertyMask() const override { - return ModulePropertyMask::kBinarySerializable | ModulePropertyMask::kRunnable; + return ModulePropertyMask::kBinarySerializable | ModulePropertyMask::kDSOExportable | + ModulePropertyMask::kRunnable; } void SaveToFile(const std::string& file_name, const std::string& format) override; void SaveToBinary(dmlc::Stream* stream) override;