Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Hack to compile smpi on Mac (but need to fix;)
[simgrid.git] / src / smpi / smpi_c99.c
index 2efa529..9d65579 100644 (file)
@@ -12,5 +12,13 @@ static void smpi_free_static(int status, void* arg) {
 }
 
 void smpi_register_static(void* arg) {
+
+#ifndef APPLE
+// FIXME
+// On Apple this error occurs:
+//     Undefined symbols for architecture x86_64:
+//       "_on_exit", referenced from:
+//           _smpi_register_static in smpi_c99.c.o
    on_exit(&smpi_free_static, arg);
+#endif
 }