Cygwin: configure: Define default valus for target specific variables

Define default values for DLL_ENTRY, DIN_FILE, and TLSOFFSETS_H
and drop them from the x86_64-specific branch.  Keep the mechanism
intact to allow other target CPUs if there ever will be.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2022-01-27 12:41:55 +01:00
parent d4fa3b4abb
commit c0d5bb262d
2 changed files with 5 additions and 5 deletions

View File

@ -65,12 +65,12 @@ no) ;;
esac esac
]) ])
DLL_ENTRY="dll_entry"
DIN_FILE="${target_cpu}.din"
TLSOFFSETS_H="tlsoffsets-${target_cpu}.h"
case "$target_cpu" in case "$target_cpu" in
x86_64) x86_64) ;;
DLL_ENTRY="dll_entry"
DIN_FILE="x86_64.din"
TLSOFFSETS_H="tlsoffsets64.h"
;;
*) AC_MSG_ERROR([Invalid target processor "$target_cpu"]) ;; *) AC_MSG_ERROR([Invalid target processor "$target_cpu"]) ;;
esac esac