Xrasher/filesystem/wscript

60 lines
1.9 KiB
Text
Raw Permalink Normal View History

#!/usr/bin/env python
MEMFD_CREATE_TEST = '''#define _GNU_SOURCE
#include <sys/mman.h>
int main(int argc, char **argv) { return memfd_create(argv[0], 0); }'''
DIRENT_D_TYPE_TEST = '''#define _GNU_SOURCE
#include <dirent.h>
int main(int argc, char **argv) { struct dirent entry; entry.d_type = DT_DIR; return 0; }
'''
def options(opt):
pass
def configure(conf):
if conf.env.COMPILER_CXX != 'msvc':
conf.env.append_unique('CXXFLAGS', ['-fno-exceptions'])
2023-11-03 14:48:09 +03:00
if conf.env.DEST_OS == 'android':
conf.check_cc(lib='android')
elif conf.env.cxxshlib_PATTERN.startswith('lib'): # remove lib prefix for other systems than Android
conf.env.cxxshlib_PATTERN = conf.env.cxxshlib_PATTERN[3:]
if conf.check_cc(fragment=MEMFD_CREATE_TEST, msg='Checking for memfd_create', mandatory=False):
conf.define('HAVE_MEMFD_CREATE', 1)
if conf.check_cc(fragment=DIRENT_D_TYPE_TEST, msg='Checking for d_type field in struct dirent', mandatory=False):
conf.define('HAVE_DIRENT_D_TYPE', 1)
def build(bld):
bld(name = 'filesystem_includes', export_includes = '.')
2023-02-13 20:53:17 +01:00
2024-01-30 15:04:57 +03:00
libs = [ 'filesystem_includes', 'sdk_includes', 'werror' ]
2023-11-03 14:48:09 +03:00
2023-02-13 20:53:17 +01:00
# on PSVita do not link any libraries that are already in the main executable, but add the includes target
2023-11-03 14:48:09 +03:00
if bld.env.DEST_OS != 'psvita':
libs += [ 'public', 'ANDROID' ]
2023-02-13 20:53:17 +01:00
bld.shlib(target = 'filesystem_stdio',
2024-10-23 23:20:47 +03:00
features = 'seq',
source = bld.path.ant_glob(['*.c', '*.cpp']),
2023-02-13 20:53:17 +01:00
use = libs,
install_path = bld.env.LIBDIR)
if bld.env.TESTS:
# build in same module, so dynamic linking will work
# for now (until we turn libpublic to shared module lol)
tests = {
'interface' : 'tests/interface.cpp',
'caseinsensitive' : 'tests/caseinsensitive.c',
'no-init': 'tests/no-init.c'
}
for i in tests:
bld.program(features = 'test seq',
source = tests[i],
target = 'test_%s' % i,
use = libs + ['DL'],
rpath = bld.env.DEFAULT_RPATH,
install_path = None)