mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 05:07:21 -04:00
Remove hardcoded paths
This commit is contained in:
parent
b9da1d9e2d
commit
d866b2a086
5 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@
|
|||
#
|
||||
# Original Author: Jean-Roch COULON - Thales
|
||||
|
||||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
|
||||
|
||||
class Parameter:
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#
|
||||
# Original Author: Jean-Roch COULON - Thales
|
||||
|
||||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
|
||||
|
||||
def define_blacklist(parameters):
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#
|
||||
# Original Author: Jean-Roch COULON - Thales
|
||||
|
||||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
import os
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#
|
||||
# Original Author: Jean-Roch COULON - Thales
|
||||
|
||||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import re
|
||||
import sys
|
||||
|
|
|
@ -1004,7 +1004,7 @@ def check_spike_version():
|
|||
logging.info(f"- stderr:\n\n{user_spike_stderr_string}")
|
||||
# Run 'ldd' on Spike binary and print contents of stdout and stderr.
|
||||
spike_ldd = subprocess.run(
|
||||
"/bin/ldd $SPIKE_PATH/spike", capture_output=True, text=True, shell=True
|
||||
"ldd $SPIKE_PATH/spike", capture_output=True, text=True, shell=True
|
||||
)
|
||||
spike_ldd_stdout = spike_ldd.stdout.strip()
|
||||
spike_ldd_stderr = spike_ldd.stderr.strip()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue