diff options
author | George Liakopoulos <liakopoulosgeo10@gmail.com> | 2021-03-23 11:46:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 09:46:49 +0000 |
commit | eaeeb78a8b45e2a193bd396349e9354b55d57fd7 (patch) | |
tree | 5375dcd04a9a04352473b2ec751958f6743b7353 | |
parent | 280ac5bd99b4d66ea10d0aa8d4edba53bf460b10 (diff) | |
download | gcc-eaeeb78a8b45e2a193bd396349e9354b55d57fd7.zip gcc-eaeeb78a8b45e2a193bd396349e9354b55d57fd7.tar.gz gcc-eaeeb78a8b45e2a193bd396349e9354b55d57fd7.tar.bz2 |
update README.md (#299)
Add example to extend your PATH for GCC installs
-rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -62,6 +62,10 @@ Then invoke the compiler as expected: $ gccrs -g -O2 -c test.rs -o test.o $ gccrs -o test test.o ``` +If the driver of gccrs is not found , try run this export : +```bash +$ export PATH=$HOME/gccrs-install/bin:$PATH +``` ## Testsuite |