mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-21 12:36:28 +02:00
Add nasm/asm support for 64 bit binaries
This commit is contained in:
parent
050ea8caa1
commit
9ffca9abb1
3 changed files with 175 additions and 167 deletions
|
@ -78,6 +78,9 @@ case "$lang" in
|
|||
"nasm" | "asm")
|
||||
bin=nasm
|
||||
;;
|
||||
"nasm64" | "asm64")
|
||||
bin=nasm64
|
||||
;;
|
||||
"node" | "js" | "javascript")
|
||||
bin=node
|
||||
;;
|
||||
|
|
|
@ -23,8 +23,10 @@ echo 'testing js'
|
|||
../execute js test.js
|
||||
echo 'testing kotlin'
|
||||
../execute kotlin test.kt
|
||||
echo 'testing asm'
|
||||
echo 'testing asm 32 bit'
|
||||
../execute asm test.nasm
|
||||
echo 'testing asm 64 bit'
|
||||
../execute asm64 test64.nasm
|
||||
echo 'testing php'
|
||||
../execute php test.php
|
||||
echo 'testing perl'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue