emscripten_docker/povray_gcc/build.sh

12 lines
289 B
Bash
Raw Normal View History

#!/bin/bash -x
EMAIL="hi@mmcwilliams.com"
NAME="Matt McWilliams"
CPPFLAGS="-include uint-hack.h -I/usr/include/OpenEXR"
cd unix/
sh prebuild.sh
cd ../
./configure COMPILED_BY="$NAME <$EMAIL>" LDFLAGS="-Wl,-V"
echo "typedef unsigned int uint;" > uint-hack.h
make -j CPPFLAGS="${CPPFLAGS}"