Skip to content

Commit

Permalink
Update path to dockerfile in devcontainer (#536)
Browse files Browse the repository at this point in the history
* Fix codespaces naming to refer to Dockerfile, not Dockerfile.gcc13.

* Specify g++-13 at CXX_COMPILER flag.
  • Loading branch information
AdamJovanovic authored May 3, 2024
1 parent 87ba580 commit d159efb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Existing Dockerfile",
"build": {
"context": "..",
"dockerfile": "../Dockerfile.gcc13"
"dockerfile": "../Dockerfile"
},
"customizations": {
"vscode": {
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/gcc-compilation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mkdir build && cd build
### 3. Setup CMake

```bash
cmake .. -GNinja -DCMAKE_CXX_COMPILER=g++
cmake .. -GNinja -DCMAKE_CXX_COMPILER=g++-13
```

### 4. Build
Expand All @@ -36,4 +36,4 @@ cmake --build .
### Additional information

If you can't install g++ 13 on your system, you can use
prepared [Dockerfile](../../Dockerfile.gcc13).
prepared [Dockerfile](../../Dockerfile).
Empty file modified scripts/run_tests_linux_gxx.sh
100644 → 100755
Empty file.

0 comments on commit d159efb

Please sign in to comment.