File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -363,20 +363,20 @@ codegen-backends = ["llvm", "gcc"]
363363Then you need to install libgccjit 12. For example with ` apt ` :
364364
365365``` text
366- $ apt install libgccjit-12-dev
366+ apt install libgccjit-12-dev
367367```
368368
369369Now you can run the following command:
370370
371371``` text
372- $ ./x test compiler/rustc_codegen_gcc/
372+ ./x test compiler/rustc_codegen_gcc/
373373```
374374
375375If it cannot find the ` .so ` library (if you installed it with ` apt ` for example), you
376376need to pass the library file path with ` LIBRARY_PATH ` :
377377
378378``` text
379- $ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/ ./x test compiler/rustc_codegen_gcc/
379+ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/ ./x test compiler/rustc_codegen_gcc/
380380```
381381
382382If you encounter bugs or problems, don't hesitate to open issues on the
You can’t perform that action at this time.
0 commit comments