Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ISA-based refactor to move OST1 into a submodule #132

Open
wants to merge 14 commits into
base: openpiton-dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Deprecated calling sims without a core argument
Jbalkind committed Jul 19, 2023
commit f1bdf76992f5d48fe8bf34e7b56c2c3be019991b
4 changes: 2 additions & 2 deletions piton/tools/src/sims/sims,2.0
Original file line number Diff line number Diff line change
@@ -349,8 +349,8 @@ die ("DIE. -pico and -pico_het cannot both be set") if ($opt{pico} && $opt{pico_

# Setting ost1 by default. This works better than default to 1
# for heterogeneous-ISA stuff
if (!$opt{pico} && !$opt{ariane}) {
$opt{ost1} = 1 ;
if ((!$opt{pico} && !$opt{ariane} && !$opt{ost1}) && ($opt{sys} eq "manycore")) {
die ("DIE. Calling sims without specifying a core is no longer supported (you probably want to add -ariane, -ost1, or similar to your sims command)") ;
}

push (@{$opt{config_cpp_args}}, "-DFLIST_OST1") if ($opt{ost1} || $opt{pico_het}) ;