Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Deprecate Lua platform files.
[simgrid.git] / src / surf / xml / surfxml_parseplatf.cpp
index 5201996..2576e49 100644 (file)
@@ -72,6 +72,11 @@ void parse_platform_file(const std::string& file)
    */
   if (is_lua) {
 #if SIMGRID_HAVE_LUA
+    static bool already_warned = false;
+    if (not already_warned) { // XBT_ATTRIB_DEPRECATED_v332
+      XBT_WARN("You are using a lua platform file. This feature is deprecated and will disappear after SimGrid v3.31.");
+      already_warned = true;
+    }
     lua_State* L = luaL_newstate();
     luaL_openlibs(L);