Chore: Configure debugging in vscode
This commit is contained in:
parent
9f91eb3962
commit
387e7aad34
8 changed files with 49 additions and 11 deletions
29
.vscode/launch.json
vendored
Normal file
29
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "C/C++: gcc debug active file",
|
||||||
|
"program": "${workspaceFolder}/Implementierung/md2",
|
||||||
|
"args": [
|
||||||
|
"${workspaceFolder}/Implementierung/testfile"
|
||||||
|
],
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"externalConsole": false,
|
||||||
|
"MIMode": "gdb",
|
||||||
|
"setupCommands": [
|
||||||
|
{
|
||||||
|
"description": "Enable pretty-printing for gdb",
|
||||||
|
"text": "-enable-pretty-printing",
|
||||||
|
"ignoreFailures": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preLaunchTask": "C/C++: gcc build active file",
|
||||||
|
"miDebuggerPath": "/usr/bin/gdb"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
13
.vscode/settings.json
vendored
13
.vscode/settings.json
vendored
|
@ -10,7 +10,14 @@
|
||||||
"string_view": "c",
|
"string_view": "c",
|
||||||
"system_error": "c",
|
"system_error": "c",
|
||||||
"variant": "c",
|
"variant": "c",
|
||||||
"array": "c"
|
"array": "c",
|
||||||
|
"md2.h": "c",
|
||||||
|
"io.h": "c"
|
||||||
},
|
},
|
||||||
"editor.formatOnSave": true
|
"editor.formatOnSave": true,
|
||||||
}
|
"C_Cpp.default.includePath": [
|
||||||
|
"./lib",
|
||||||
|
"./Implementierung/lib",
|
||||||
|
"../lib"
|
||||||
|
]
|
||||||
|
}
|
4
.vscode/tasks.json
vendored
4
.vscode/tasks.json
vendored
|
@ -7,9 +7,9 @@
|
||||||
"args": [
|
"args": [
|
||||||
"-fdiagnostics-color=always",
|
"-fdiagnostics-color=always",
|
||||||
"-g",
|
"-g",
|
||||||
"${file}",
|
"${fileDirname}/*.c",
|
||||||
"-o",
|
"-o",
|
||||||
"${fileDirname}/${fileBasenameNoExtension}"
|
"${fileDirname}/../md2"
|
||||||
],
|
],
|
||||||
"options": {
|
"options": {
|
||||||
"cwd": "${fileDirname}"
|
"cwd": "${fileDirname}"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
SRC = src/main.c src/helper.c src/io.c src/md2.c
|
SRC = src/main.c src/helper.c src/io.c src/md2.c
|
||||||
OBJ = ${subst src,build,${SRC:.c=.o}}
|
OBJ = ${subst src,build,${SRC:.c=.o}}
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CFLAGS = -Ilib
|
CFLAGS = -Ilib -ggdb
|
||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
|
|
||||||
all: md2
|
all: md2
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
#ifndef IO_H
|
#ifndef IO_H
|
||||||
#define IO_H
|
#define IO_H
|
||||||
|
|
||||||
|
#define _XOPEN_SOURCE
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "helper.h"
|
#include "../lib/helper.h"
|
||||||
|
|
||||||
int stringToInt(char *string) {
|
int stringToInt(char *string) {
|
||||||
char *leftover = "";
|
char *leftover = "";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "io.h"
|
#include "../lib/io.h"
|
||||||
|
|
||||||
bool read_file(const char* path, uint8_t** data, size_t* size) {
|
bool read_file(const char* path, uint8_t** data, size_t* size) {
|
||||||
// Read the contents of the file specified by path into a heap-allocated
|
// Read the contents of the file specified by path into a heap-allocated
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
#include "helper.h"
|
#include "../lib/helper.h"
|
||||||
#include "io.h"
|
#include "../lib/io.h"
|
||||||
#include "md2.h"
|
#include "../lib/md2.h"
|
||||||
|
|
||||||
// Returns true when val is approx. equal to exp.
|
// Returns true when val is approx. equal to exp.
|
||||||
static bool runTest(const char* message, const char* expectedHash) {
|
static bool runTest(const char* message, const char* expectedHash) {
|
||||||
|
|
Loading…
Reference in a new issue