From c13bf28c5e59a95be2cd4bec3c8e48c16f0199f7 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sat, 26 Mar 2011 21:22:55 +0000 Subject: For microperl, add uconfig64.sh, with values suitable for an LP64 platform. Add instructions on how to use it to README.micro. There's rather too much size-specific in perl's configuration to make it viable to have a single uconfig.sh that will work "properly" on both LP32 and LP64 platforms. It seems best to ship the default as LP32 (which is correct for Win32 (although I don't know if microperl yet builds on Win32)), and provide just a config.sh file for LP64, as most (all?) 64 bit *nix platforms are LP64, and can run the shell commands to generate a uconfig.h from it. (Win64 is LLP64, so uconfig64.sh isn't going to be right for it, so the inability of Win64 to generate uconfig.h from uconfig64.sh isn't a problem) --- Makefile.micro | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile.micro') diff --git a/Makefile.micro b/Makefile.micro index e1aae13ab2..b5a7123f9a 100644 --- a/Makefile.micro +++ b/Makefile.micro @@ -50,6 +50,9 @@ patch_uconfig: regen_uconfig: uconfig.sh config_h.SH $(ENV) CONFIG_SH=uconfig.sh CONFIG_H=uconfig.h sh ./config_h.SH +regen_uconfig64: uconfig64.sh config_h.SH + $(ENV) CONFIG_SH=uconfig64.sh CONFIG_H=uconfig.h sh ./config_h.SH + # Do not regenerate perly.c and perly.h. perly.c: perly.y -- cgit v1.2.1