dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet ChangeLog,1.2354,1.2355 Makefile.am,1.2


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet ChangeLog,1.2354,1.2355 Makefile.am,1.22,1.23 configure.in,1.120,1.121
Date: Thu, 15 May 2003 00:30:22 -0400

Update of /cvsroot/dotgnu-pnet/pnet
In directory subversions:/tmp/cvs-serv23135

Modified Files:
        ChangeLog Makefile.am configure.in 
Log Message:


Add the "--disable-tools" option to "configure" to enable building just
the runtime engine on platforms that cannot support the full developer
toolchain.


Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.2354
retrieving revision 1.2355
diff -C2 -r1.2354 -r1.2355
*** ChangeLog   15 May 2003 02:46:27 -0000      1.2354
--- ChangeLog   15 May 2003 04:30:18 -0000      1.2355
***************
*** 17,20 ****
--- 17,25 ----
        layer to m68k-palmos.
  
+       * Makefile.am, configure.in, engine/Makefile.am, engine/cvmc.c,
+       engine/ilrun.c, engine/ilverify.c: add the "--disable-tools"
+       option to "configure" to enable building just the runtime engine
+       on platforms that cannot support the full developer toolchain.
+ 
  2003-05-14  Gopal.V  <address@hidden>
        

Index: Makefile.am
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/Makefile.am,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** Makefile.am 13 Feb 2003 06:55:28 -0000      1.22
--- Makefile.am 15 May 2003 04:30:18 -0000      1.23
***************
*** 1,5 ****
--- 1,15 ----
+ 
+ if PNET_TOOLS
+ 
  SUBDIRS = . include support image dumpasm engine ilasm ildasm \
                  ilalink ilsize ilnative ilheader ilfind ildiff ildd codegen 
cscc \
                  resgen ildb csdoc csant clrwrap samples doc tests
+ 
+ else
+ 
+ ## We only want to build the runtime engine.
+ SUBDIRS = . include support image engine
+ 
+ endif
  
  ## We build libffi and libgc carefully, because we need to be

Index: configure.in
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/configure.in,v
retrieving revision 1.120
retrieving revision 1.121
diff -C2 -r1.120 -r1.121
*** configure.in        12 May 2003 09:41:17 -0000      1.120
--- configure.in        15 May 2003 04:30:18 -0000      1.121
***************
*** 362,365 ****
--- 362,375 ----
  LIBS="$LIBS $THREADLIBS"
  
+ dnl Determine if we should compile in the tools.
+ AC_ARG_ENABLE(tools,
+ [  --disable-tools         Remove the developer tools from the build],
+ [case "${enableval}" in
+   yes) tools=true ;;
+   no)  tools=false ;;
+   *) AC_MSG_ERROR(bad value ${enableval} for --enable-tools) ;;
+ esac],[tools=true])
+ AM_CONDITIONAL(PNET_TOOLS, test x$tools = xtrue)
+ 
  dnl Set up libffi-related variables.
  AC_SUBST(FFILIBS)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]