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:
parent
c2f599fb69
commit
b5dcb1e5e3
|
@ -65,12 +65,12 @@ no) ;;
|
|||
esac
|
||||
])
|
||||
|
||||
DLL_ENTRY="dll_entry"
|
||||
DIN_FILE="${target_cpu}.din"
|
||||
TLSOFFSETS_H="tlsoffsets-${target_cpu}.h"
|
||||
|
||||
case "$target_cpu" in
|
||||
x86_64)
|
||||
DLL_ENTRY="dll_entry"
|
||||
DIN_FILE="x86_64.din"
|
||||
TLSOFFSETS_H="tlsoffsets64.h"
|
||||
;;
|
||||
x86_64) ;;
|
||||
*) AC_MSG_ERROR([Invalid target processor "$target_cpu"]) ;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in New Issue