Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
everything411 committed Nov 19, 2021
0 parents commit 177ff71
Show file tree
Hide file tree
Showing 29 changed files with 3,765 additions and 0 deletions.
1 change: 1 addition & 0 deletions .vscode/configurationCache.log
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"buildTargets":["cgi.o","clean","controller.o","handle.o","http_response.o","log.o","main.o","server","visitor.o"],"launchTargets":["\\d\\Documents\\http>server()"],"customConfigurationProvider":{"workspaceBrowse":{"browsePath":["\\d\\Documents\\http"],"compilerArgs":["-Wall","-O2","-c","log.cc","-o","log.o"],"compilerPath":"C:\\msys64\\ucrt64\\bin\\g++.exe"},"fileIndex":[["\\d\\Documents\\http\\cgi.c",{"uri":{"$mid":1,"fsPath":"\\d\\Documents\\http\\cgi.c","_sep":1,"path":"/d/Documents/http/cgi.c","scheme":"file"},"configuration":{"defines":[],"standard":"c11","includePath":[],"forcedInclude":[],"intelliSenseMode":"gcc-x64","compilerPath":"C:\\msys64\\ucrt64\\bin\\gcc.exe","compilerArgs":["-Wall","-O2","-c","cgi.c","-o","cgi.o"]}}],["\\d\\Documents\\http\\main.c",{"uri":{"$mid":1,"fsPath":"\\d\\Documents\\http\\main.c","_sep":1,"path":"/d/Documents/http/main.c","scheme":"file"},"configuration":{"defines":[],"standard":"c11","includePath":[],"forcedInclude":[],"intelliSenseMode":"gcc-x64","compilerPath":"C:\\msys64\\ucrt64\\bin\\gcc.exe","compilerArgs":["-Wall","-O2","-c","main.c","-o","main.o"]}}],["\\d\\Documents\\http\\visitor.c",{"uri":{"$mid":1,"fsPath":"\\d\\Documents\\http\\visitor.c","_sep":1,"path":"/d/Documents/http/visitor.c","scheme":"file"},"configuration":{"defines":[],"standard":"c11","includePath":[],"forcedInclude":[],"intelliSenseMode":"gcc-x64","compilerPath":"C:\\msys64\\ucrt64\\bin\\gcc.exe","compilerArgs":["-Wall","-O2","-c","visitor.c","-o","visitor.o"]}}],["\\d\\Documents\\http\\controller.cc",{"uri":{"$mid":1,"fsPath":"\\d\\Documents\\http\\controller.cc","_sep":1,"path":"/d/Documents/http/controller.cc","scheme":"file"},"configuration":{"defines":[],"standard":"c++17","includePath":[],"forcedInclude":[],"intelliSenseMode":"gcc-x64","compilerPath":"C:\\msys64\\ucrt64\\bin\\g++.exe","compilerArgs":["-Wall","-O2","-c","controller.cc","-o","controller.o"]}}],["\\d\\Documents\\http\\handle.cc",{"uri":{"$mid":1,"fsPath":"\\d\\Documents\\http\\handle.cc","_sep":1,"path":"/d/Documents/http/handle.cc","scheme":"file"},"configuration":{"defines":[],"standard":"c++17","includePath":[],"forcedInclude":[],"intelliSenseMode":"gcc-x64","compilerPath":"C:\\msys64\\ucrt64\\bin\\g++.exe","compilerArgs":["-Wall","-O2","-c","handle.cc","-o","handle.o"]}}],["\\d\\Documents\\http\\http_response.cc",{"uri":{"$mid":1,"fsPath":"\\d\\Documents\\http\\http_response.cc","_sep":1,"path":"/d/Documents/http/http_response.cc","scheme":"file"},"configuration":{"defines":[],"standard":"c++17","includePath":[],"forcedInclude":[],"intelliSenseMode":"gcc-x64","compilerPath":"C:\\msys64\\ucrt64\\bin\\g++.exe","compilerArgs":["-Wall","-O2","-c","http_response.cc","-o","http_response.o"]}}],["\\d\\Documents\\http\\log.cc",{"uri":{"$mid":1,"fsPath":"\\d\\Documents\\http\\log.cc","_sep":1,"path":"/d/Documents/http/log.cc","scheme":"file"},"configuration":{"defines":[],"standard":"c++17","includePath":[],"forcedInclude":[],"intelliSenseMode":"gcc-x64","compilerPath":"C:\\msys64\\ucrt64\\bin\\g++.exe","compilerArgs":["-Wall","-O2","-c","log.cc","-o","log.o"]}}]]}}
16 changes: 16 additions & 0 deletions .vscode/dryrun.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
make.exe --dry-run --always-make --keep-going --print-directory
make: Entering directory '/d/Documents/http'
gcc -Wall -O2 -c cgi.c -o cgi.o

gcc -Wall -O2 -c main.c -o main.o
gcc -Wall -O2 -c visitor.c -o visitor.o

g++ -Wall -O2 -c controller.cc -o controller.o

g++ -Wall -O2 -c handle.cc -o handle.o
g++ -Wall -O2 -c http_response.cc -o http_response.o

g++ -Wall -O2 -c log.cc -o log.o
g++ -Wall -O2 cgi.o main.o visitor.o controller.o handle.o http_response.o log.o -o server -s -lpthread
make: Leaving directory '/d/Documents/http'

3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"makefile.extensionOutputFolder": "./.vscode"
}
Loading

0 comments on commit 177ff71

Please sign in to comment.