質問編集履歴

5

2021/10/09 12:40

投稿

aaaa____
aaaa____

スコア29

test CHANGED
@@ -1 +1 @@
1
- RISCVでコンパイルが出来ない
1
+ コンパイルが出来ない
test CHANGED
File without changes

4

2021/10/09 12:40

投稿

aaaa____
aaaa____

スコア29

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  ```ここに言語を入力
2
2
 
3
- :~/work/B3/second/archB/SimPipeV/SimRISCV/test$ ls
3
+ :SimPipeV/SimRISCV/test$ ls
4
4
 
5
5
  ex1.c hello.c mem_qemu.txt null
6
6
 
@@ -16,7 +16,7 @@
16
16
 
17
17
  ```ここに言語を入力
18
18
 
19
- :~/work/B3/second/archB/SimPipeV$ ./simprv SimRISCV/test/hello
19
+ :/SimPipeV$ ./simprv SimRISCV/test/hello
20
20
 
21
21
  * Pipeline Configuration *
22
22
 
@@ -48,7 +48,7 @@
48
48
 
49
49
  ```ここに言語を入力
50
50
 
51
- :~/work/B3/second/archB/SimPipeV/SimRISCV/test$ riscv32-unknown-elf-gcc –static hello.c –o hello
51
+ :/SimPipeV/SimRISCV/test$ riscv32-unknown-elf-gcc –static hello.c –o hello
52
52
 
53
53
  riscv32-unknown-elf-gcc: command not found
54
54
 

3

内容の充実化

2021/10/09 12:37

投稿

aaaa____
aaaa____

スコア29

test CHANGED
File without changes
test CHANGED
@@ -61,3 +61,65 @@
61
61
  https://qiita.com/ozipi/items/29d7ae0b21e476dd7b8e
62
62
 
63
63
  このサイトにはbash_profileと書いてるのですが,現状ホームディレクトリ直下にあるのはbash_historyとbash_logoutとbashrcでどれを使うのか分からないです
64
+
65
+ bashとついていない.profileはありました.内容派次のようになっています
66
+
67
+ ```ここに言語を入力
68
+
69
+ # ~/.profile: executed by the command interpreter for login shells.
70
+
71
+ # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
72
+
73
+ # exists.
74
+
75
+ # see /usr/share/doc/bash/examples/startup-files for examples.
76
+
77
+ # the files are located in the bash-doc package.
78
+
79
+
80
+
81
+ # the default umask is set in /etc/profile; for setting the umask
82
+
83
+ # for ssh logins, install and configure the libpam-umask package.
84
+
85
+ #umask 022
86
+
87
+
88
+
89
+ # if running bash
90
+
91
+ if [ -n "$BASH_VERSION" ]; then
92
+
93
+ # include .bashrc if it exists
94
+
95
+ if [ -f "$HOME/.bashrc" ]; then
96
+
97
+ . "$HOME/.bashrc"
98
+
99
+ fi
100
+
101
+ fi
102
+
103
+
104
+
105
+ # set PATH so it includes user's private bin if it exists
106
+
107
+ if [ -d "$HOME/bin" ] ; then
108
+
109
+ PATH="$HOME/bin:$PATH"
110
+
111
+ fi
112
+
113
+
114
+
115
+ # set PATH so it includes user's private bin if it exists
116
+
117
+ if [ -d "$HOME/.local/bin" ] ; then
118
+
119
+ PATH="$HOME/.local/bin:$PATH"
120
+
121
+ fi
122
+
123
+
124
+
125
+ ```

2

内容の充実化

2021/09/30 06:54

投稿

aaaa____
aaaa____

スコア29

test CHANGED
File without changes
test CHANGED
@@ -57,3 +57,7 @@
57
57
  ~~なぜコマンドがないと言われてしまうのか教えたいただきたいです.~~
58
58
 
59
59
  パスが通っていないのが原因のようで,バッシュに記述することでパスを通したいのですが,描き方が分からないので教えていただきたいです.
60
+
61
+ https://qiita.com/ozipi/items/29d7ae0b21e476dd7b8e
62
+
63
+ このサイトにはbash_profileと書いてるのですが,現状ホームディレクトリ直下にあるのはbash_historyとbash_logoutとbashrcでどれを使うのか分からないです

1

内容の充実化

2021/09/30 06:51

投稿

aaaa____
aaaa____

スコア29

test CHANGED
File without changes
test CHANGED
@@ -54,10 +54,6 @@
54
54
 
55
55
  ```
56
56
 
57
- なぜコマンドがないと言われてしまうのか教えたいただきたいです.
57
+ ~~なぜコマンドがないと言われてしまうのか教えたいただきたいです.~~
58
58
 
59
-
60
-
61
- サイトも見みたのですが,有益な情報を見つけることが出来ませんでした.
59
+ パスが通っいないが原因のよう,バッシュに記述することでパスを通したいのですが,描き方が分からないので教えていただきたいです
62
-
63
- https://github.com/riscv-software-src/riscv-tools/issues/184