Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
     5         kx 
     5         kx /*****************************
     5         kx   luaconf.h - Multilib Header
     5         kx  *****************************/
     5         kx 
     5         kx #ifndef __MULTILIB__LUACONF_H__
     5         kx #define __MULTILIB__LUACONF_H__
     5         kx 
     5         kx #if defined(__x86_64__)    || \
     5         kx     defined(__sparc64__)   || \
     5         kx     defined(__arch64__)    || \
     5         kx     defined(__powerpc64__) || \
     5         kx     defined(__riscv_xlen) && __riscv_xlen == 64 || \
     5         kx     defined (__s390x__)
     5         kx #include "luaconf-64.h"
     5         kx #else
     5         kx #include "luaconf-32.h"
     5         kx #endif
     5         kx 
     5         kx #endif /* __MULTILIB__LUACONF_H__ */