skip to Main Content

makefile syntax error while removing files – Ubuntu

I am trying to make a make file function that cleans everything instead of 4 specific files: all: clean compile run compile: main.c util.c util.h @echo "-------------------------------------------" @echo "Compiling..." @gcc -o test main.c util.c run: @echo "-------------------------------------------" @echo "Running the…

VIEW QUESTION

How to define a new debugflag in gem5? – Ubuntu

gem5 version:v21.2.0.0,add a new debugflag in src/mem/cache/SConscript, recompile with scons/build/ARM/gem.opt, and in build/ARM/debug file still don't have new debugflag.hh in this version, how to define a new debugflag to show the details about addr, pc addr, cacheline's index, cacheline's offset,…

VIEW QUESTION

missing kubectl config files after install – Ubuntu

I tried to install kubectl on popos using the following commands sudo apt install -y ca-certificates curl apt-transport-https sudo curl -fsSLo /etc/apt/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg echo "deb [signed-by=/etc/apt/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list sudo apt update sudo apt install -y…

VIEW QUESTION
Back To Top
Search