* i686.din: New file.

* x86_64.din: New file.
* common.din: New file.
* cygwin.din: Delete.
* cygwin64.din: Delete.
* gendef: Rework to take options rather than using positional parameters.
Accept multiple files as input.
This commit is contained in:
Christopher Faylor
2013-04-30 23:43:08 +00:00
parent 28204e0849
commit bfebe413bd
9 changed files with 785 additions and 2101 deletions

View File

@@ -75,14 +75,14 @@ case "$target_cpu" in
DLL_NAME="cygwin1.dll"
DLL_ENTRY="_dll_entry@12"
DEF_DLL_ENTRY="dll_entry@12"
DIN_FILE="cygwin.din"
DIN_FILE="i686.din"
TLSOFFSETS_H="tlsoffsets.h"
CONFIG_DIR="i386" ;;
x86_64)
DLL_NAME="cygwin1.dll"
DLL_ENTRY="dll_entry"
DEF_DLL_ENTRY="dll_entry"
DIN_FILE="cygwin64.din"
DIN_FILE="x86_64.din"
TLSOFFSETS_H="tlsoffsets64.h"
CONFIG_DIR="x86_64" ;;
*) AC_MSG_ERROR(Invalid target processor \"$target_cpu\") ;;