equal
deleted
inserted
replaced
34 # main |
34 # main |
35 |
35 |
36 mkdir -p "$TARGET" |
36 mkdir -p "$TARGET" |
37 |
37 |
38 case "$TARGET" in |
38 case "$TARGET" in |
39 x86_64-linux) |
39 x86_64-linux | x86_64-darwin) |
40 cc -m64 exec_process.c -o "$TARGET/exec_process" |
40 cc -m64 exec_process.c -o "$TARGET/exec_process" |
41 ;; |
41 ;; |
42 x86-linux) |
42 x86-linux | x86-darwin) |
43 cc -m32 exec_process.c -o "$TARGET/exec_process" |
43 cc -m32 exec_process.c -o "$TARGET/exec_process" |
44 ;; |
44 ;; |
45 x86-cygwin) |
45 x86-cygwin) |
46 cc exec_process.c -o "$TARGET/exec_process.exe" |
46 cc exec_process.c -o "$TARGET/exec_process.exe" |
47 ;; |
47 ;; |