arm: Remove unnecessary files/code
Since softfp code has been added to all required vfp kernels, the code for auto detection of abi is no longer required. The option to force softfp ABI on make command line by giving ARM_SOFTFP_ABI=1 is retained. But there is no need to give this option anymore. Also the newly added C versions of 4x4/4x2 gemm/trmm kernels are removed. These are longer required. Moreover these kernels has bugs.
This commit is contained in:
+7
-12
@@ -487,19 +487,14 @@ ifeq ($(ARCH), arm)
|
||||
NO_BINARY_MODE = 1
|
||||
BINARY_DEFINED = 1
|
||||
|
||||
# If ABI is specified on command line use it. Else use the automatically detected ABI.
|
||||
ifeq ($(ARM_SOFTFP_ABI),1)
|
||||
ARM_ABI = softfp
|
||||
else
|
||||
ifeq ($(ARM_HARD_ABI),1)
|
||||
ARM_ABI = hard
|
||||
else
|
||||
ARM_ABI=$(ARM_ABI_AUTO)
|
||||
CCOMMON_OPT += -marm
|
||||
FCOMMON_OPT += -marm
|
||||
|
||||
# If softfp abi is mentioned on the command line, force it.
|
||||
ifeq ($(ARM_SOFTFP_ABI), 1)
|
||||
CCOMMON_OPT += -mfloat-abi=softfp
|
||||
FCOMMON_OPT += -mfloat-abi=softfp
|
||||
endif
|
||||
endif
|
||||
export ARM_ABI_AUTO
|
||||
CCOMMON_OPT += -marm -mfloat-abi=$(ARM_ABI)
|
||||
FCOMMON_OPT += -marm -mfloat-abi=$(ARM_ABI)
|
||||
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user