Skip to content

Commit

Permalink
More verbose debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinborner committed Feb 24, 2025
1 parent c10bc21 commit 86b3587
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions generate/reference/are-we-fast-yet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ echo ","
>&2 echo "Java"
cd ../Java

./build.sh &>/dev/null
./build.sh >&2

echo "\"java\":"
i=0
Expand All @@ -87,7 +87,7 @@ echo ","
cd ../C++

# generated using the build.sh script -- TODO: Do we want to change this?
clang++ -Wall -Wextra -Wno-unused-private-field -O3 -flto -march=native -ffp-contract=off -std=c++17 src/harness.cpp src/deltablue.cpp src/memory/object_tracker.cpp src/richards.cpp -o harness &>/dev/null
clang++ -Wall -Wextra -Wno-unused-private-field -O3 -flto -march=native -ffp-contract=off -std=c++17 src/harness.cpp src/deltablue.cpp src/memory/object_tracker.cpp src/richards.cpp -o harness >&2

echo "\"cpp\":"
i=0
Expand Down
8 changes: 4 additions & 4 deletions generate/reference/duality-of-compilation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ echo "{"
>&2 echo "Rust"
cd reference/duality-of-compilation/rust/

make &>/dev/null
make >&2

echo "\"rust\":"
{
Expand All @@ -51,7 +51,7 @@ echo ","
cd ../koka/

# TODO: make this smarter (for CI)
make KOKA_HOME=/usr/local/share/koka/v3.1.2/ &>/dev/null
make KOKA_HOME=/usr/local/share/koka/v3.1.2/ >&2

echo "\"koka\":"
{
Expand All @@ -69,7 +69,7 @@ echo ","
>&2 echo "mlton"
cd ../mlton/

make &>/dev/null
make >&2

echo "\"mlton\":"
{
Expand All @@ -87,7 +87,7 @@ echo ","
>&2 echo "ocaml"
cd ../ocaml/

make &>/dev/null
make >&2

echo "\"ocaml\":"
{
Expand Down
4 changes: 2 additions & 2 deletions generate/reference/effect-handlers-bench.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cd reference/effect-handlers-bench/benchmarks/ocaml/

eval $(opam env --switch=4.12.0+domains+effects --set-switch)

make build &>/dev/null
make build >&2

echo "\"ocaml\":"
{
Expand All @@ -52,7 +52,7 @@ echo ","
>&2 echo "Eff"
cd ../eff/

make build &>/dev/null
make build >&2

echo "\"eff\":"
{
Expand Down

0 comments on commit 86b3587

Please sign in to comment.