diff options
author | Alain Frisch <alain@frisch.fr> | 2012-01-16 09:07:55 +0000 |
---|---|---|
committer | Alain Frisch <alain@frisch.fr> | 2012-01-16 09:07:55 +0000 |
commit | b03113a54293f9614b92193c88c8589abf313fe2 (patch) | |
tree | 4f0e7d811e082bc7e83dfb3b9696a7b6283123c0 /config/Makefile.msvc64 | |
parent | bfb35c4fce698c2dacbe5eab2f2a7086cff79b3c (diff) | |
download | ocaml-b03113a54293f9614b92193c88c8589abf313fe2.tar.gz |
Bad cut and paste.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12028 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'config/Makefile.msvc64')
-rw-r--r-- | config/Makefile.msvc64 | 117 |
1 files changed, 0 insertions, 117 deletions
diff --git a/config/Makefile.msvc64 b/config/Makefile.msvc64 index 6457556cd9..2b3edcd56e 100644 --- a/config/Makefile.msvc64 +++ b/config/Makefile.msvc64 @@ -120,123 +120,6 @@ SYSLIB=$(1).lib RANLIB=echo RANLIBCMD= -######################################################################### -# # -# OCaml # -# # -# Xavier Leroy, projet Cristal, INRIA Rocquencourt # -# # -# Copyright 1999 Institut National de Recherche en Informatique et # -# en Automatique. All rights reserved. This file is distributed # -# under the terms of the GNU Library General Public License, with # -# the special exception on linking described in file ../LICENSE. # -# # -######################################################################### - -# $Id$ - -# Configuration for Windows, Visual C++ compiler - -######### General configuration - -PREFIX=C:/ocamlms - -### Where to install the binaries. -BINDIR=$(PREFIX)/bin - -### Where to install the standard library -LIBDIR=$(PREFIX)/lib - -### Where to install the stub DLLs -STUBLIBDIR=$(LIBDIR)/stublibs - -### Where to install the info files -DISTRIB=$(PREFIX) - -### Where to install the man pages -MANDIR=$(PREFIX)/man - -########## Toolchain and OS dependencies - -TOOLCHAIN=msvc -CCOMPTYPE=msvc -O=obj -A=lib -S=asm -SO=s.obj -DO=d.obj -EXE=.exe -EXT_DLL=.dll -EXT_OBJ=.$(O) -EXT_LIB=.$(A) -EXT_ASM=.$(S) -MANEXT=1 -SHARPBANGSCRIPTS=false -PTHREAD_LINK= -X11_INCLUDES= -X11_LINK= -DBM_INCLUDES= -DBM_LINK= -BYTECCRPATH= -SUPPORTS_SHARED_LIBRARIES=true -SHAREDCCCOMPOPTS= -NATIVECCPROFOPTS= -NATIVECCRPATH= -ASM=ml /nologo /coff /Cp /c /Fo -ASPP= -ASPPPROFFLAGS= -PROFILING=noprof -DYNLINKOPTS= -DEBUGGER=ocamldebugger -CC_PROFILE= -SYSTHREAD_SUPPORT=true -EXTRALIBS= -CMXS=cmxs -NATDYNLINK=true -RUNTIMED=noruntimed - -########## Configuration for the bytecode compiler - -### Which C compiler to use for the bytecode interpreter. -BYTECC=cl /nologo -D_CRT_SECURE_NO_DEPRECATE - -### Additional compile-time options for $(BYTECC). (For static linking.) -BYTECCCOMPOPTS=/Ox /MD - -### Additional link-time options for $(BYTECC). (For static linking.) -BYTECCLINKOPTS= - -### Additional compile-time options for $(BYTECC). (For building a DLL.) -DLLCCCOMPOPTS=/Ox /MD - -### Libraries needed -BYTECCLIBS=advapi32.lib ws2_32.lib -NATIVECCLIBS=advapi32.lib ws2_32.lib - -### How to invoke the C preprocessor -CPP=cl /nologo /EP - -### Flexlink -FLEXLINK=flexlink -merge-manifest -FLEXDIR=$(shell $(FLEXLINK) -where) -IFLEXDIR=-I"$(FLEXDIR)" -MKDLL=$(FLEXLINK) -MKEXE=$(FLEXLINK) -exe -link /STACK:16777216 -MKMAINDLL=$(FLEXLINK) -maindll - -### How to build a static library -MKLIB=link /lib /nologo /out:$(1) $(2) -#ml let mklib out files opts = Printf.sprintf "link /lib /nologo /out:%s %s %s" out opts files;; -MKSHAREDLIBRPATH= - -### Canonicalize the name of a system library -SYSLIB=$(1).lib -#ml let syslib x = x ^ ".lib";; - -### The ranlib command -RANLIB=echo -RANLIBCMD= - ### The ar command ARCMD= |