From 880464a7d21dc0e2f15c52ef24937d5eca953f2e Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Mon, 28 Dec 2020 09:37:28 -0800 Subject: 7440 --- translate_subx | 18 +++++++++--------- translate_subx_emulated | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/translate_subx b/translate_subx index bb8488fc..6d08e971 100755 --- a/translate_subx +++ b/translate_subx @@ -6,17 +6,17 @@ set -e ./build -cat $* |apps/braces > a.braces +cat $* |apps/braces > a.braces -cat a.braces |apps/calls > a.calls +cat a.braces |apps/calls > a.calls -cat a.calls |apps/sigils > a.sigils +cat a.calls |apps/sigils > a.sigils -cat a.sigils |apps/tests > a.tests +cat a.sigils |apps/tests > a.tests -cat a.tests |apps/assort > a.assort +cat a.tests |apps/assort > a.assort -cat a.assort |apps/dquotes > a.dquotes +cat a.assort |apps/dquotes > a.dquotes # A little hack. We want translate_subx to always emit identical binaries to # the C++ translator. The C++ translator assorts segments before it processes @@ -29,12 +29,12 @@ cat a.assort |apps/dquotes > a.dquotes # a) modify C++ translator to process string literals before assorting. # b) clean up dquotes to assume assorted segments, and append to the # existing data segment. -cat a.dquotes |apps/assort > a.assort2 +cat a.dquotes |apps/assort > a.assort2 -cat a.assort2 |apps/pack > a.pack +cat a.assort2 |apps/pack > a.pack cat a.pack |apps/survey_elf > a.survey -cat a.survey |apps/hex > a.elf +cat a.survey |apps/hex > a.elf chmod +x a.elf diff --git a/translate_subx_emulated b/translate_subx_emulated index 730e020d..5faebbbb 100755 --- a/translate_subx_emulated +++ b/translate_subx_emulated @@ -8,15 +8,15 @@ set -e ./build -cat $* |./bootstrap_bin run apps/braces > a.braces -cat a.braces |./bootstrap_bin run apps/calls > a.calls -cat a.calls |./bootstrap_bin run apps/sigils > a.sigils -cat a.sigils |./bootstrap_bin run apps/tests > a.tests -cat a.tests |./bootstrap_bin run apps/assort > a.assort -cat a.assort |./bootstrap_bin run apps/dquotes > a.dquotes -cat a.dquotes |./bootstrap_bin run apps/assort > a.assort2 -cat a.assort2 |./bootstrap_bin run apps/pack > a.pack +cat $* |./bootstrap_bin run apps/braces > a.braces +cat a.braces |./bootstrap_bin run apps/calls > a.calls +cat a.calls |./bootstrap_bin run apps/sigils > a.sigils +cat a.sigils |./bootstrap_bin run apps/tests > a.tests +cat a.tests |./bootstrap_bin run apps/assort > a.assort +cat a.assort |./bootstrap_bin run apps/dquotes > a.dquotes +cat a.dquotes |./bootstrap_bin run apps/assort > a.assort2 +cat a.assort2 |./bootstrap_bin run apps/pack > a.pack cat a.pack |./bootstrap_bin run apps/survey_elf > a.survey -cat a.survey |./bootstrap_bin run apps/hex > a.elf +cat a.survey |./bootstrap_bin run apps/hex > a.elf chmod +x a.elf -- cgit 1.4.1-2-gfad0