Skip to content

Commit 6d69367

Browse files
authored
Merge pull request #147 from codecrafters-io/andy/upgrade-gcc
CC-1960 [SQLite] Upgrade gcc to 14.3.0-bookworm
2 parents 8f41997 + 1eb01bb commit 6d69367

File tree

32 files changed

+3075
-77
lines changed

32 files changed

+3075
-77
lines changed

compiled_starters/c/.codecrafters/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
set -e # Exit on failure
1010

11-
exec $(dirname $0)/build/sqlite "$@"
11+
exec $(dirname "$0")/build/sqlite "$@"

compiled_starters/c/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Time to move on to the next stage!
2929

3030
Note: This section is for stages 2 and beyond.
3131

32-
1. Ensure you have `gcc` installed locally
32+
1. Ensure you have `cmake` installed locally
3333
1. Run `./your_program.sh` to run your program, which is implemented in
3434
`src/main.c`.
3535
1. Commit your changes and run `git push origin master` to submit your solution

compiled_starters/c/your_program.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ set -e # Exit early if any commands fail
2222
#
2323
# - Edit this to change how your program runs locally
2424
# - Edit .codecrafters/run.sh to change how your program runs remotely
25-
exec $(dirname $0)/build/sqlite "$@"
25+
exec $(dirname "$0")/build/sqlite "$@"

compiled_starters/cpp/.codecrafters/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
set -e # Exit on failure
1010

11-
exec ./build/exe "$@"
11+
exec $(dirname "$0")/build/sqlite "$@"

0 commit comments

Comments
 (0)