Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Hack to compile smpi on Mac (but need to fix;)
authorpierre <pierre@chontal.imag.fr>
Thu, 7 Jun 2012 13:59:08 +0000 (15:59 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Thu, 7 Jun 2012 14:09:56 +0000 (16:09 +0200)
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
 }