summaryrefslogtreecommitdiffstats
path: root/src/nasm-wrapper
blob: 9e950ff5861662f2279354fa0a6ac624bbb8c65f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env bash 

set -e

refine_nasm_options=""
while [ -n "$*" ]; do
    case "$1" in
    -f )
        shift
        refine_nasm_options="$refine_nasm_options -f $1"
        shift
        ;;
    -c | --param* | -m* | -pipe | -thread )
        # unknown options under nasm & yasm
        shift
        ;;
    -g* )
        # ignore debug format
        shift
        ;;
    -W* )
        # Warning/error option
        shift
        ;;
    -f* )
        shift
        ;;
    -I | -isystem )
        shift
        refine_nasm_options="$refine_nasm_options -i $1"
        shift
        ;;
    * )
        # Keep other options
        refine_nasm_options="$refine_nasm_options $1"
        shift
        ;;
    esac
done

nasm $refine_nasm_options

true