projects
/
onyx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fffc188
)
fixed: MacOS not having `mktemp`
author
Brendan Hansen
<brendan.f.hansen@gmail.com>
Mon, 4 Dec 2023 17:21:43 +0000
(11:21 -0600)
committer
Brendan Hansen
<brendan.f.hansen@gmail.com>
Mon, 4 Dec 2023 17:21:43 +0000
(11:21 -0600)
interpreter/build.sh
patch
|
blob
|
history
diff --git
a/interpreter/build.sh
b/interpreter/build.sh
index 8816ef688ae525560eb7049a1dd4375d3c77083a..8d9fea724d70e4aa5ebee63a8444806b372b80ff 100755
(executable)
--- a/
interpreter/build.sh
+++ b/
interpreter/build.sh
@@
-16,7
+16,7
@@
mkdir -p "build_tmp"
echo "Compiling ovmwasm to $TARGET"
for c_file in $C_FILES; do
- $ONYX_CC $FLAGS $INCLUDES -fPIC -o
$(mktemp -p build_tmp -t XXXXXXX.o)
-c $c_file $LIBS
+ $ONYX_CC $FLAGS $INCLUDES -fPIC -o
build_tmp/$(basename $c_file).o
-c $c_file $LIBS
done
ar crs "$TARGET" build_tmp/*.o*