From 568a58f7260766eba3257e0341db00170e0ad08e Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 10 Feb 2015 17:14:51 +0100 Subject: Move to waf --- wscript | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 wscript (limited to 'wscript') diff --git a/wscript b/wscript new file mode 100644 index 0000000..68b76f7 --- /dev/null +++ b/wscript @@ -0,0 +1,30 @@ +def options(opt): + opt.load ('compiler_c') + +def configure(conf): + conf.define (key='VERSION', val='pre') + conf.load ('compiler_c') + + conf.env.append_unique ('CFLAGS', '-std=gnu99') + conf.env.append_unique ('CFLAGS', '-mrdrnd') + + conf.check_cfg (path='xml2-config', args='--cflags --libs', package='', uselib_store='xml2') + conf.check_cc (lib='xml2', header_name='libxml/parser.h', function_name='xmlParseFile', use='xml2') + conf.check_cc (lib='pthread', uselib_store='pthread', define_name='HAVE_LIBPTHREAD') + conf.check_cc (lib='jpeg', uselib_store='jpeg') + conf.check_cfg (package='libpng', uselib_store='png', args=['--cflags', '--libs'], msg='Checking for library png') + conf.check_cc (lib='amdlibm', header_name='amdlibm.h', mandatory=False, define_name='HAVE_AMDLIBM', uselib_store='amdlibm') + conf.check_cc (fragment='#include \nint main() { uint32_t a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }', define_name='HAVE_GCC_ATOMIC_OPS', msg='Checking for atomic CAS') + conf.check_cc (fragment='#include \nint main() { uint64_t a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }', define_name='HAVE_GCC_64BIT_ATOMIC_OPS', msg='Checking for 64 bit atomic CAS') + + # does not work + #conf.check_cc (function_name='__builtin_ia32_rdrand64_step', define_name='HAVE_RDRAND64') + conf.write_config_header ('config.h') + +def build(bld): + bld.stlib (features='c cstlib', source='flam3.c filters.c parser.c variations.c interpolation.c palettes.c jpeg.c png.c xorshift.c docstring.c', target='libflam3', use='xml2 png jpeg pthread', includes='.') + bld.program (features='c cprogram', source='flam3-render.c', target='flam3-render', use='libflam3 xml2 jpeg png amdlibm pthread', includes='.') + bld.program (features='c cprogram', source='flam3-genome.c', target='flam3-genome', use='libflam3 xml2 png amdlibm pthread', includes='.') + bld.program (features='c cprogram', source='flam3-animate.c', target='flam3-animate', use='libflam3 xml2 png amdlibm pthread', includes='.') + bld.program (features='c cprogram', source='flam3-convert.c', target='flam3-convert', use='libflam3 xml2 png amdlibm pthread', includes='.') + -- cgit v1.2.3