Changeset View
Changeset View
Standalone View
Standalone View
stand/libsa/Makefile
| Show First 20 Lines • Show All 60 Lines • ▼ Show 20 Lines | |||||
| # Compiler support functions | # Compiler support functions | ||||
| .PATH: ${SRCTOP}/contrib/llvm-project/compiler-rt/lib/builtins/ | .PATH: ${SRCTOP}/contrib/llvm-project/compiler-rt/lib/builtins/ | ||||
| # __clzsi2 and ctzsi2 for various builtin functions | # __clzsi2 and ctzsi2 for various builtin functions | ||||
| SRCS+= clzsi2.c ctzsi2.c | SRCS+= clzsi2.c ctzsi2.c | ||||
| # Divide and modulus functions called by the compiler | # Divide and modulus functions called by the compiler | ||||
| SRCS+= divmoddi4.c divmodsi4.c divdi3.c divsi3.c moddi3.c modsi3.c | SRCS+= divmoddi4.c divmodsi4.c divdi3.c divsi3.c moddi3.c modsi3.c | ||||
| SRCS+= udivmoddi4.c udivmodsi4.c udivdi3.c udivsi3.c umoddi3.c umodsi3.c | SRCS+= udivmoddi4.c udivmodsi4.c udivdi3.c udivsi3.c umoddi3.c umodsi3.c | ||||
| SRCS+= ashldi3.c ashrdi3.c lshrdi3.c | SRCS+= ashldi3.c ashrdi3.c lshrdi3.c | ||||
| .if ${MACHINE_CPUARCH} == "riscv" | |||||
| SRCS+= bswapdi2.c bswapsi2.c clzdi2.c ctzdi2.c | |||||
| .endif | |||||
| .if ${MACHINE_CPUARCH:Namd64:Ni386} == "" | .if ${MACHINE_CPUARCH:Namd64:Ni386} == "" | ||||
| .PATH: ${SASRC}/x86 | .PATH: ${SASRC}/x86 | ||||
| SRCS+= hypervisor.c | SRCS+= hypervisor.c | ||||
| .endif | .endif | ||||
| .if ${MACHINE_CPUARCH} == "powerpc" | .if ${MACHINE_CPUARCH} == "powerpc" | ||||
| SRCS+= syncicache.c | SRCS+= syncicache.c | ||||
| ▲ Show 20 Lines • Show All 151 Lines • Show Last 20 Lines | |||||