File tree 1 file changed +3
-3
lines changed
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"]
363
363
Then you need to install libgccjit 12. For example with ` apt ` :
364
364
365
365
``` text
366
- $ apt install libgccjit-12-dev
366
+ apt install libgccjit-12-dev
367
367
```
368
368
369
369
Now you can run the following command:
370
370
371
371
``` text
372
- $ ./x test compiler/rustc_codegen_gcc/
372
+ ./x test compiler/rustc_codegen_gcc/
373
373
```
374
374
375
375
If it cannot find the ` .so ` library (if you installed it with ` apt ` for example), you
376
376
need to pass the library file path with ` LIBRARY_PATH ` :
377
377
378
378
``` 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/
380
380
```
381
381
382
382
If 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