[chip front end] Research on file parsing mode of Filelist -f/-F

preface File directory used for test (list key files): /home/xiaotu/my_work/uvm_demo -cfg/ -ctl/ -rtl/ -sim/ -Makefile -tc/ -th/ -ver/ -f/-F affects the parsing method in the followed filelist file, and does not affect the parsing method of the followed file A typical scenario is that the suffix path in the makefile with - f or - F is ...

Posted by gammaman on Sun, 28 Nov 2021 13:37:59 -0800

JMH quick start

Introduction to JMH JMH is a tool set dedicated to code micro benchmarking. JMH is developed by the team implementing Java virtual machine. Since the JVM has become more and more intelligent, it may be optimized to varying degrees in the compilation stage, class loading stage and running stage of java files, so the code written by developers ...

Posted by Uranium-235 on Fri, 26 Nov 2021 13:16:52 -0800

Introduction to c language helloworld under ubuntu system and writing simple programs

1, Introduction to c language helloworld 1. Open the terminal under ubuntu system 2. Find the appropriate location and create a new folder helloworld. mkdir helloworld 3. Open the helloworld folder cd helloworld As shown in the figure 4. Create and open a c language file named hello.c with vim vi hello.c 5. Enter the following ...

Posted by KashKurcura on Fri, 19 Nov 2021 20:13:48 -0800

Easy to use vim configuration and explanation,. vimrc makes office more efficient

Many Xiaobai should start using vim just like me. They don't know how to configure it. They have been plagued by problems such as not highlighting SV syntax and boring background color. The following is the summary and explanation of the boss. An efficient vim configuration is of great help to the office! . vimrc configuration Powerful vim ...

Posted by Zippyaus on Mon, 08 Nov 2021 22:35:16 -0800

A brief summary of linux kernel source git operations

An old colleague wanted to quickly check the different versions of the kernel source and asked me if there was any way, of course. Most people who play linux should know that kernel/git/stable/linux.git - Linux kernel stable tree You can find and download the linux kernel source. However, there are many original versions of the kernel source co ...

Posted by kristianblom on Tue, 19 Oct 2021 09:12:41 -0700

Android phone Termux installation Linux system and desktop installation super detailed tutorial

1, Content introduction 1.1 termux introduction   Termux   It is an Android terminal simulator and Linux environment application, which can run directly without root or setting. Automatically install the smallest basic system, use APT package manager, and use other packages. 1.2 application linux Xiaobai's operation practice. You ...

Posted by jimdy on Mon, 11 Oct 2021 10:18:54 -0700

[title song] Linux from introduction to mastery (October 9, 2021)

https://www.educoder.net/paths/43 Level 1: Linux initial experience #!/bin/bash #Write the command to complete the task in the following section #*********begin*********# cd / ls -a #********* end *********# Level 2: common Linux commands #!/bin/bash #Write the command to complete the task in the following section #*********begin*********# ...

Posted by slipperyfish on Sat, 09 Oct 2021 12:11:29 -0700

gcc generates static library. a and dynamic library. so and their instance usage

1, Generating. a static library and. so dynamic library with gcc 1. Example 1 explanation of Hello program ① Create a directory and edit the generated sample programs hello.h, hello.c, and main.c (1) Example program hello.h #ifndef HELLO_H #define HELLO_H void hello(const char *name); #endif (2) Example program hello.c #include<st ...

Posted by outpost on Fri, 08 Oct 2021 03:49:23 -0700

7-37 Xiaoming typing (10 points) (data structure) The simplest code to write the simplest data structure

Xiao Ming is typing a document using Microsoft Word. The document contains only a-z lowercase letters and spaces. During typing, the Home key, End key, _arrow key, _arrow key, Insert key, Backspace key may be pressed one or more times. Write a program that gives Xiao Ming the sequence of keys on the keyboard and outputs the final text displayed ...

Posted by Otoom on Wed, 06 Oct 2021 15:29:22 -0700

Shell basic syntax

1, Variable 1. When defining a variable, the variable name does not add a dollar sign 2. Naming can only use English letters, numbers and underscores, and the first character cannot start with a number. 3. There can be no space in the middle, and underline () can be used.   4. Punctuation cannot be used.     & ...

Posted by Quest on Wed, 29 Sep 2021 15:42:31 -0700