Pass the GTK_THEME
environment variable to the app:
$ GTK_THEME=<theme> <path>
You can replace <theme>
with any available theme:
$ ls /usr/share/themes
% LaTeX tabular which is oriented in landscape and takes the entire page | |
\begin{landscape} | |
\begin{table}[h] | |
\centering | |
\resizebox{\textwidth}{!}{% | |
\begin{tabular}{|c|c|c|} | |
\hline | |
Header 1 & Header 2 & Header 3 \\ \hline | |
Item 1 & Item 2 & Item 3 \\ \hline | |
Item 4 & Item 5 & Item 6 \\ \hline |
Pass the GTK_THEME
environment variable to the app:
$ GTK_THEME=<theme> <path>
You can replace <theme>
with any available theme:
$ ls /usr/share/themes
// Assuming 64-bit long | |
unsigned long np2(unsigned long x) { | |
--x; | |
x |= x >> 1; | |
x |= x >> 2; | |
x |= x >> 4; | |
x |= x >> 8; | |
x |= x >> 16; | |
x |= x >> 32; | |
++x; |
#include <locale.h> | |
#include <stdio.h> | |
int main(int argc, char* argv[]){ | |
setlocale(LC_ALL, ""); | |
printf("LC_ALL: %s\n", setlocale(LC_ALL, NULL)); | |
printf("LC_CTYPE: %s\n", setlocale(LC_CTYPE, NULL)); | |
return 0; |
# Check to see if a package named ansible is installed | |
if [ "$(dpkg -l | awk '/ansible/ {print }'|wc -l)" -ge 1 ]; then | |
echo OK | |
else | |
echo FAIL | |
fi |
// sudo apt update && apt install wordnet-dev | |
#include <stdio.h> | |
#include <stdlib.h> | |
char *pickword(char *file) | |
{ | |
FILE *fp = fopen(file, "r"); | |
if (!fp) perror(file), exit(1); | |
fseek(fp, 0, SEEK_END); | |
long end = ftell(fp); |
This problem has been verified in both of the LLVM 10.0.0 and 10.0.1 releases' monorepos. The problem and fix is shown for 10.0.1, but the patch can be applied to a 10.0.0 monorepo.
[3273/3351] Building CXX object utils/.../benchmark.dir/benchmark_register.cc.o
FAILED: utils/benchmark/src/CMakeFiles/benchmark.dir/benchmark_register.cc.o
/usr/bin/c++ -DHAVE_POSIX_REGEX -DHAVE_STD_REGEX -DHAVE_STEADY_CLOCK -D_DEBUG -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -Dbenchmark_EXPORTS -I/home/matthew/llvm-project-10.0.1/build/utils/benchmark/src -I/home/matthew/llvm-project-10.0.1/llvm/utils/benchmark/src -I/usr/include/libxml2 -I/home/matthew/llvm-project-10.0.1/build/include -I/home/matthew/llvm-project-10.0.1/llvm/include -I/home/matthew/llvm-project-10.0.1/llvm/utils/benchmark/include -I/home/matthew/llvm-project-10.0.1/llvm/utils/benchmark/src/../include -fPIC -fvisibility-inlines-hidden
#include <locale.h> | |
#include <stdio.h> | |
#include <wchar.h> | |
/* REFERENCES | |
* Control Block: http://unicode.org/charts/PDF/U0000.pdf | |
* Control Pictures: http://unicode.org/charts/PDF/U2400.pdf | |
*/ | |
int main(int argc, char* argv[]) { |
CFLAGS=-g -Wall -std=c99 | |
LDFLAGS= | |
LDLIBS=-lcunit | |
RMFLAGS=-f | |
all: basic | |
.PHONY: clean | |
clean: | |
$(RM) $(RMFLAGS) basic |