view paste/paste.15661 @ 11317:16da968350f1

<zzo38> slashlearn cricket//Cricket is one team is in and one team is out, and the team who are out try to get the team who is in to be out, and then the team who was previously out can be in. Whoever earn more points wins, unless you run out of time, in which case nobody wins.
author HackBot
date Sun, 14 Jan 2018 03:44:32 +0000
parents 9a4f41db9f00
children
line wrap: on
line source

#!/bin/bash
LANG="$1"

case "$LANG" in
    c)
        HEAD='#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <sys/types.h>\n#include <unistd.h>\nint main(int argc, char **argv) {'
        TAIL='; return 0; }'
        EXT='c'
        GCC='gcc'
        FLAGS='-std=gnu99'
    ;;

    c++)
        HEAD='#include <iostream>\n#include <cstdio>\n#include <cstdlib>\n#include <cstring>\nusing namespace std;\nint main(int argc, char **argv) {'
        TAIL='; return 0; }'
        EXT='cc'
        GCC='g++'
        FLAGS='-std=gnu++0x'
    ;;

    assembler)
        HEAD='.globl main; main: pushq %rbp; movq %rsp, %rbp;'
        TAIL='movl $0, %eax; leave; ret;'
        EXT='s'
        GCC='gcc'
        FLAGS=''
    ;;

    java)
        HEAD='class Main { public static void main(String[] args) {'
        TAIL='; } }'
        EXT='java'
        GCC='gcj'
        FLAGS='--main=Main'
    ;;
esac

SOURCE="/tmp/source.$$.$EXT"

(
    echo -e "$HEAD"
    cat "$2"
    echo "$TAIL"
) > "$SOURCE"

"$GCC" -x "$LANG" "$SOURCE" $FLAGS -o /tmp/compiled.$$ 2> /dev/null ||
"$GCC" -x "$LANG" "$2" $FLAGS -o /tmp/compiled.$$ 2> /dev/null ||
echo 'Does not compile.'
rm -f "$SOURCE"

ulimit -u 3
if [ -x /tmp/compiled.$$ ] ; then /tmp/compiled.$$; fi 2>&1
rm -f /tmp/compiled.$$