Some checks failed
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Successful in 1m34s
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Successful in 2m46s
sm-rpc / build (Debug, host.gcc) (push) Failing after 1m28s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Successful in 2m14s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Successful in 2m8s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Successful in 5m35s
sm-rpc / build (Release, host.gcc) (push) Failing after 1m55s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Successful in 7m21s
30 lines
771 B
C
30 lines
771 B
C
/* arch_functions.h -- Arch-specific function prototypes.
|
|
* Copyright (C) 2017 Hans Kristian Rosbach
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
|
|
#ifndef CPU_FUNCTIONS_H_
|
|
#define CPU_FUNCTIONS_H_
|
|
|
|
#include "zbuild.h"
|
|
#include "zutil.h"
|
|
#include "crc32.h"
|
|
#include "deflate.h"
|
|
#include "fallback_builtins.h"
|
|
|
|
#include "arch/generic/generic_functions.h"
|
|
|
|
#if defined(X86_FEATURES)
|
|
# include "arch/x86/x86_functions.h"
|
|
#elif defined(ARM_FEATURES)
|
|
# include "arch/arm/arm_functions.h"
|
|
#elif defined(PPC_FEATURES) || defined(POWER_FEATURES)
|
|
# include "arch/power/power_functions.h"
|
|
#elif defined(S390_FEATURES)
|
|
# include "arch/s390/s390_functions.h"
|
|
#elif defined(RISCV_FEATURES)
|
|
# include "arch/riscv/riscv_functions.h"
|
|
#endif
|
|
|
|
#endif
|