sudo apt-get update
sudo apt-get full upgrade
sudo apt install wx-common wx3.0-doc wx3.0-examples wx3.0-headers wx3.0-i18n \
cmake libwxbase3.0-dev libwxbase3.0-dev libwxgtk-media3.0-dev \
libwxgtk-media3.0-gtk3-dev libwxgtk-webview3.0-gtk3-dev libwxgtk3.0-dev \
libwxgtk3.0-gtk3-dev libwxsqlite3-3.0-dev libcanberra-gtk-dev \
- Visit https://cygwin.com/ and download the GUI installer setup-x86_64.exe
- The installer will want to know where to put the files. C:\cygwin64 is the best choice; all lower-case and no spaces.
- It will also ask where to put the package files or installation source. I like to keep mine in my Downloads folder
C:\Users\Patrick\Downloads\Cygwin-Packages
- Next it will ask how to reach the Internet.
- After that it will ask you to choose a mirror. I like mirros.kernal.org. You should pick something you're familiar with.
- If the above went well you will see the package manager. Here you will select the packages to install. At a minimum you'll need:
- gcc-core
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If your project uses a Boost library that is not header-only such as | |
#include "boost/filesystem.hpp" | |
And, you're getting link errors such as: | |
Undefined symbols for architecture x86_64: | |
... | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to losslessly copy all the tracks on an audio CD to a folder | |
# named the same as the album. | |
# | |
# System Requirements: Mac OS X, cdrom drive, cdparanoia. | |
# | |
# Patrick Moffitt October 8, 2017. | |
# | |
CDPARANOIA=$(which cdparanoia) |