jami-client-gnome

(★ 77)

Mirror of Gerrit Jami GNOME Client

File Explorer

  • .gitignore
  • .gitreview
  • AUTHORS
  • CMakeLists.txt
  • CONTRIBUTING.md
  • COPYING
  • jami-gnome.appdata.xml
  • jami-gnome.desktop
  • jami-gnome.desktop.autostart
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

cmake

View Details ▼

Cross-platform build automation system, that generates recipes for native build systems.

cmake {{path/to/project_directory}}

Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:

cmake --build {{path/to/build_directory}}

Use a generated recipe in a given directory to build artifacts:

cmake --install {{path/to/build_directory}} --strip

Install the build artifacts into `/usr/local/` and strip debugging symbols:

🔍

opt

View Details ▼

Run optimizations and analyze LLVM source files.

opt -{{passname}} {{path/to/file.bc}} -S -o {{file_opt.bc}}

Run an optimization or analysis on a bitcode file:

opt {{-dot-cfg}} -S {{path/to/file.bc}} -disable-output

Output the Control Flow Graph of a function to a `.dot` file:

opt -O2 {{path/to/file.bc}} -S -o {{path/to/output_file.bc}}

Optimize the program at level 2 and output the result to another file:

🔍

apt-get

View Details ▼

Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.

sudo apt-get update

Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):

sudo apt-get install {{package}}

Install a package, or update it to the latest available version:

sudo apt-get remove {{package}}

Remove a package:

🔍

dnf install

View Details ▼

Install packages on Red Hat-based distributions.

sudo dnf {{[in|install]}} {{package1 package2 ...}}

Install packages by name:

sudo dnf {{[in|install]}} {{path/to/file}}

Install a package from a local file:

sudo dnf {{[in|install]}} {{https://example.com/package.rpm}}

Install a package from the internet:

# Project Badges

// repository documentation