Download ltspice...
Install wine:
dnf install wine
Install LTspice:
Download ltspice...
Install wine:
dnf install wine
Install LTspice:
// © 2021 Erik Rigtorp <[email protected]> | |
// SPDX-License-Identifier: MIT | |
// udpcap: Simple tool to record UDP streams | |
#include <arpa/inet.h> | |
#include <err.h> | |
#include <errno.h> | |
#include <fcntl.h> | |
#include <getopt.h> |
-- The CXX compiler identification is GNU 10.2.1 | |
-- The C compiler identification is GNU 10.2.1 | |
-- Check for working CXX compiler: /usr/lib64/ccache/c++ | |
-- Check for working CXX compiler: /usr/lib64/ccache/c++ - works | |
-- Detecting CXX compiler ABI info | |
-- Detecting CXX compiler ABI info - done | |
-- Detecting CXX compile features | |
-- Detecting CXX compile features - done | |
-- Check for working C compiler: /usr/lib64/ccache/cc | |
-- Check for working C compiler: /usr/lib64/ccache/cc - works |
static inline uint64_t rdtsc() { | |
uint64_t hi, lo; | |
asm volatile ("mfence; rdtsc\n" : "=a" (lo), "=d" (hi)); | |
return (hi << 32) | lo; | |
} |
Fetch all remotes for all git repositories in directory (recursively)
$ find . -name .git -type d -execdir git --git-dir '{}' fetch --all ';'