Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove obsolete files.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Thu, 21 Jun 2012 09:26:00 +0000 (11:26 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Thu, 21 Jun 2012 12:41:45 +0000 (14:41 +0200)
Not sure about mk_win-dist.sh.

README.win32 [deleted file]
toolchain.win32 [deleted file]

diff --git a/README.win32 b/README.win32
deleted file mode 100644 (file)
index 86487e7..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-UNFORTUNATELY, THIS FILE IS PARTIALLY OBSOLETE, AND WE DUNNO HOW TO
-BUILD SUCH AN ARCHIVE ANYMORE. HELP WELCOMED.
-
-
-This is the Windows binary release of SimGrid 3.2.
-
-Archive content:
----------------
- * simgrid.dll      : the library itself (compiled with VC6)
- * coff\simgrid.lib : import file of the library for VC6
- * omf\simgrid.lib  : import file of the library for borland builder
-                      (generated automatically from the previous one)
-                     
- * include          : directory containing all the public headers of SimGrid
-
-Installation steps:
-------------------
-
- * Copy the dll in your windows\ directory
- * Copy the include dir on your disk, and add its path to the list of pathes
-   searched by your compiler.
- * Incorporate the import file corresponding to your compiler in your
-   project. 
-
-
-Concluding remarks:
-------------------
-
-We are working on a proper installer for these files, but it's not
-done yet.
-
-We belive that the MSG interface of SimGrid is as stable under windows as
-under Linux, but the GRAS runtime is not ported to windows yet. If you use
-GRAS, you can simulate your applications under windows, but you cannot run
-it for real on this platform (yet). We are working on it, too.
-
-Any feedback on this is very welcomed.
-
-
-Enjoy, 
-da simgrid team.
diff --git a/toolchain.win32 b/toolchain.win32
deleted file mode 100644 (file)
index 9957143..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-# This is an experimental toolchain file for cmake, to use when you
-# want to cross compile from linux to windows. For that, you'll need
-# some packages like mingw32-binutils and mingw32-runtime. 
-
-# Then, you want to use those commands to cross compile out of source:
-# cd win32
-# cmake -DCMAKE_TOOLCHAIN_FILE=../toolchain.win32 -Dwith_context=windows ..
-
-# the name of the target operating system
-SET(CMAKE_SYSTEM_NAME Windows)
-
-SET(WIN32 1)
-
-# Manual setting of values that are detected when not cross-compiling
-SET(SIZEOF_MAX 8)
-SET(GRAS_THISARCH 3) # FIXME: that's windows 32 bits, 64bits must be detected
-
-# which compilers to use for C and C++
-SET(CMAKE_C_COMPILER i586-mingw32msvc-gcc)
-SET(CMAKE_CXX_COMPILER i586-mingw32msvc-g++)
-
-# here is the target environment located
-SET(CMAKE_FIND_ROOT_PATH  /usr/i586-mingw32msvc)
-
-# adjust the default behaviour of the FIND_XXX() commands:
-# search headers and libraries in the target environment, search 
-# programs in the host environment
-set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
-set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
-set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)