Hotfix/sangshuduo/td 3913 mips compile support (#6182)
* [TD-3913]<fix>: mips compile support. * [TD-3912]<fix>: support mips64 compile. add mips64 header file and modify tcrc32c.c for mips64. * [TD-3913]<fix>: mips compile support. verified on real loongson machine. * fix cmake. * fix gcc 4.8 compile error. Co-authored-by: Shuduo Sang <sdsang@taosdata.com>
This commit is contained in:
parent
0630af70b1
commit
17ee732381
|
@ -102,6 +102,12 @@ IF ("${CPUTYPE}" STREQUAL "")
|
||||||
SET(TD_LINUX TRUE)
|
SET(TD_LINUX TRUE)
|
||||||
SET(TD_LINUX_64 FALSE)
|
SET(TD_LINUX_64 FALSE)
|
||||||
SET(TD_ARM_64 TRUE)
|
SET(TD_ARM_64 TRUE)
|
||||||
|
ELSEIF (CMAKE_SYSTEM_PROCESSOR MATCHES "mips64")
|
||||||
|
SET(CPUTYPE "mips64")
|
||||||
|
MESSAGE(STATUS "Set CPUTYPE to mips64")
|
||||||
|
SET(TD_LINUX TRUE)
|
||||||
|
SET(TD_LINUX_64 FALSE)
|
||||||
|
SET(TD_MIPS_64 TRUE)
|
||||||
ENDIF ()
|
ENDIF ()
|
||||||
|
|
||||||
ELSE ()
|
ELSE ()
|
||||||
|
|
|
@ -23,14 +23,14 @@
|
||||||
typedef void (*FLinuxSignalHandler)(int32_t signum, siginfo_t *sigInfo, void *context);
|
typedef void (*FLinuxSignalHandler)(int32_t signum, siginfo_t *sigInfo, void *context);
|
||||||
|
|
||||||
void taosSetSignal(int32_t signum, FSignalHandler sigfp) {
|
void taosSetSignal(int32_t signum, FSignalHandler sigfp) {
|
||||||
struct sigaction act = {{0}};
|
struct sigaction act; memset(&act, 0, sizeof(act));
|
||||||
#if 1
|
#if 1
|
||||||
act.sa_flags = SA_SIGINFO;
|
act.sa_flags = SA_SIGINFO;
|
||||||
act.sa_sigaction = (FLinuxSignalHandler)sigfp;
|
act.sa_sigaction = (FLinuxSignalHandler)sigfp;
|
||||||
#else
|
#else
|
||||||
act.sa_handler = sigfp;
|
act.sa_handler = sigfp;
|
||||||
#endif
|
#endif
|
||||||
sigaction(signum, &act, NULL);
|
sigaction(signum, &act, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void taosIgnSignal(int32_t signum) {
|
void taosIgnSignal(int32_t signum) {
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
misrepresented as being the original software.
|
misrepresented as being the original software.
|
||||||
3. This notice may not be removed or altered from any source distribution.
|
3. This notice may not be removed or altered from any source distribution.
|
||||||
*/
|
*/
|
||||||
#ifndef _TD_ARM_
|
#if !defined(_TD_ARM_) && !defined(_TD_MIPS_)
|
||||||
#include <nmmintrin.h>
|
#include <nmmintrin.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue