Compile link, static library, dynamic library, gdb

Vim vim filename When on, it is command mode. // filename is opened when it exists, and created and opened when it does not exist gg Is to go directly to the top of the file content, shift + g Directly to the bottom of the file. dd Delete the line where the cursor is located 3dd Delete the line where the cursor is located and the follow ...

Posted by jestercobblepot on Fri, 24 Dec 2021 02:03:28 +0100

gopher's self-cultivation

Write in front go build, go run, go install, go get are the most frequently used commands by go language developers in their daily work or study, These commands can help us compile programs, run programs, install programs and obtain code packages. However, when executing these commands, have you thought about how to organize our source files i ...

Posted by 0riole on Mon, 20 Dec 2021 07:04:02 +0100

project command of common Cmake commands

2. project() 1.1 command format: Form 1: project(<PROJECT-NAME> [<language-name>...]) Form 2: project(<PROJECT-NAME> [VERSION <major>[.<minor>[.<patch>[.<tweak>]]]] [DESCRIPTION <project-description-string>] [HOMEPAGE_URL <url-string>] [LANGUAGES <lan ...

Posted by wigz01 on Tue, 09 Nov 2021 08:49:47 +0100

Reprint the fifth V8 parser source code explanation of Chrome V8 principle explanation

Original source:   The fifth part of the series "explanation of the principles of Chrome V8" explains the source code of V8 Parser - Security guest. The security information platform V8 is the core component of chrome, so it's not necessary to say how important it is. This series of articles explain the V8 source code, strive to ...

Posted by kade119 on Mon, 27 Sep 2021 00:41:07 +0200