@ -103,7 +103,6 @@ generate()
-e "s#@GZIP_SUFFIX@#$GZIP_SUFFIX#g" \
-e "s#@GZIP_SUFFIX@#$GZIP_SUFFIX#g" \
-e "s#@POINTER_PACK_ENABLE@#$POINTER_PACK_ENABLE#g" \
-e "s#@POINTER_PACK_ENABLE@#$POINTER_PACK_ENABLE#g" \
-e "s#@RTM_ENABLE@#$RTM_ENABLE#g" \
-e "s#@RTM_ENABLE@#$RTM_ENABLE#g" \
-e "s#@RFO_ENABLE@#$RFO_ENABLE#g" \
-e "s#@VMA_BITS@#$VMA_BITS_R#g" \
-e "s#@VMA_BITS@#$VMA_BITS_R#g" \
-e "s#@VMA_BITS_VALUE@#$VMA_BITS_VALUE_R#g" \
-e "s#@VMA_BITS_VALUE@#$VMA_BITS_VALUE_R#g" \
-e "s#@MM@#$MM#g" \
-e "s#@MM@#$MM#g" \
@ -138,7 +137,6 @@ generate_stdout()
echo " POINTER_PACK = $POINTER_PACK_ENABLE"
echo " POINTER_PACK = $POINTER_PACK_ENABLE"
echo " VMA_BITS = $VMA_BITS"
echo " VMA_BITS = $VMA_BITS"
echo " MEMORY_MODEL = $MM"
echo " MEMORY_MODEL = $MM"
echo " RFO = $RFO_ENABLE"
echo " RTM = $RTM_ENABLE"
echo " RTM = $RTM_ENABLE"
echo
echo
echo "Headers will be installed in $HEADERS"
echo "Headers will be installed in $HEADERS"
@ -175,7 +173,6 @@ for option; do
echo "The following options will affect generated code."
echo "The following options will affect generated code."
echo " --enable-pointer-packing Assumes address encoding is subset of pointer range"
echo " --enable-pointer-packing Assumes address encoding is subset of pointer range"
echo " --enable-rtm Enable restricted transactional memory (power, x86_64)"
echo " --enable-rtm Enable restricted transactional memory (power, x86_64)"
echo " --enable-rfo Enable read-for-ownership interface (power, x86_64)"
echo " --memory-model=N Specify memory model (currently tso, pso or rmo)"
echo " --memory-model=N Specify memory model (currently tso, pso or rmo)"
echo " --vma-bits=N Specify valid number of VMA bits"
echo " --vma-bits=N Specify valid number of VMA bits"
echo
echo
@ -217,9 +214,6 @@ for option; do
--enable-rtm)
--enable-rtm)
RTM_ENABLE_SET="CK_MD_RTM_ENABLE"
RTM_ENABLE_SET="CK_MD_RTM_ENABLE"
;;
;;
--enable-rfo)
RFO_ENABLE_SET="CK_MD_RFO_ENABLE"
;;
--cores=*)
--cores=*)
CORES=$value
CORES=$value
;;
;;
@ -280,7 +274,6 @@ MANDIR=${MANDIR:-"${PREFIX}/share/man"}
GZIP=${GZIP:-"gzip -c"}
GZIP=${GZIP:-"gzip -c"}
POINTER_PACK_ENABLE=${POINTER_PACK_ENABLE:-"CK_MD_POINTER_PACK_DISABLE"}
POINTER_PACK_ENABLE=${POINTER_PACK_ENABLE:-"CK_MD_POINTER_PACK_DISABLE"}
RTM_ENABLE=${RTM_ENABLE_SET:-"CK_MD_RTM_DISABLE"}
RTM_ENABLE=${RTM_ENABLE_SET:-"CK_MD_RTM_DISABLE"}
RFO_ENABLE=${RFO_ENABLE_SET:-"CK_MD_RFO_DISABLE"}
VMA_BITS=${VMA_BITS:-"unknown"}
VMA_BITS=${VMA_BITS:-"unknown"}
if test "$PROFILE"; then
if test "$PROFILE"; then