Handle explicit set of unsigned long width. For -m32
This commit is contained in:
parent
69ebd0c49e
commit
324ba713e5
|
|
@ -16,7 +16,7 @@
|
||||||
# 59 Temple Place - Suite 330
|
# 59 Temple Place - Suite 330
|
||||||
# Boston, MA 02111-1307, USA
|
# Boston, MA 02111-1307, USA
|
||||||
#
|
#
|
||||||
#ident "$Id: Makefile.in,v 1.59 2004/02/10 19:25:01 steve Exp $"
|
#ident "$Id: Makefile.in,v 1.60 2004/05/18 18:45:11 steve Exp $"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
|
@ -131,7 +131,7 @@ bin32:
|
||||||
mkdir bin32
|
mkdir bin32
|
||||||
|
|
||||||
bin32/%.o: %.cc
|
bin32/%.o: %.cc
|
||||||
$(CXX) -m32 $(CPPFLAGS) $(MDIR2) $(CXXFLAGS) -MD -c $< -o $@
|
$(CXX) -m32 -DSIZEOF_UNSIGNED_LONG=4 $(CPPFLAGS) $(MDIR2) $(CXXFLAGS) -MD -c $< -o $@
|
||||||
|
|
||||||
bin32/%.o: %.c
|
bin32/%.o: %.c
|
||||||
$(CC) -m32 $(CPPFLAGS) $(MDIR2) $(CFLAGS) -MD -c $< -o $@
|
$(CC) -m32 $(CPPFLAGS) $(MDIR2) $(CFLAGS) -MD -c $< -o $@
|
||||||
|
|
|
||||||
|
|
@ -19,11 +19,13 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
#ifdef HAVE_CVS_IDENT
|
#ifdef HAVE_CVS_IDENT
|
||||||
#ident "$Id: config.h.in,v 1.16 2003/08/26 16:26:02 steve Exp $"
|
#ident "$Id: config.h.in,v 1.17 2004/05/18 18:45:11 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# define SIZEOF_UNSIGNED_LONG_LONG 0
|
# define SIZEOF_UNSIGNED_LONG_LONG 0
|
||||||
|
#ifndef SIZEOF_UNSIGNED_LONG
|
||||||
# define SIZEOF_UNSIGNED_LONG 0
|
# define SIZEOF_UNSIGNED_LONG 0
|
||||||
|
#endif
|
||||||
# define SIZEOF_UNSIGNED 0
|
# define SIZEOF_UNSIGNED 0
|
||||||
|
|
||||||
# undef NEED_LU
|
# undef NEED_LU
|
||||||
|
|
@ -94,6 +96,9 @@ typedef unsigned long vvp_time64_t;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: config.h.in,v $
|
* $Log: config.h.in,v $
|
||||||
|
* Revision 1.17 2004/05/18 18:45:11 steve
|
||||||
|
* Handle explicit set of unsigned long width. For -m32
|
||||||
|
*
|
||||||
* Revision 1.16 2003/08/26 16:26:02 steve
|
* Revision 1.16 2003/08/26 16:26:02 steve
|
||||||
* ifdef idents correctly.
|
* ifdef idents correctly.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue