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