Fedora 43 changing CMake Default Generator from GNU Make to Ninja.
seen from United States
seen from Kyrgyzstan
seen from United States

seen from United States
seen from China
seen from United States
seen from Canada
seen from France
seen from United States

seen from United States
seen from Malaysia

seen from United States
seen from Honduras

seen from United States

seen from United States
seen from Australia
seen from Singapore
seen from United States

seen from United States

seen from United States
Fedora 43 changing CMake Default Generator from GNU Make to Ninja.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
make all
Is there anything more satisfying than getting a Makefile just right?
install git in local directory on freebsd
Recently, I have a project that need to use mongodb.
I find this post from ryan’s railscasts MongoDB and MongoMapper, which explains how to install mongodb and create a launchd that will automatically start and stop the daemon when you trun on and shutdown macbook.
However, I’d like to use macports to control the version of mongodb, and want to start and stop mongodb daemon only when I want to use it. So here are the steps.
1 use macports to install mongodb, this will take a quite long time for compling, about 1h
sudo port install mongodb
2 create configuration file and necessary directories
sudo mkdir /opt/local/var/db/mongodb_datasudo mkdir /opt/local/var/log/mongodbsudo touch /opt/local/var/log/mongodb/mongodb.logsudo mkdir /opt/local/etc/mongodb/#configuration file /opt/local/etc/mongodb/mongod.conf# Store data alongside MongoDB instead of the default, /data/db/dbpath = /opt/local/var/db/mongodb_data# Only accept local connectionsbind_ip = 127.0.0.1# Running as daemonfork = true# Take loglogpath = /opt/local/var/log/mongodb/mongodb.loglogappend = true
3 use the following code in .bashrc
alias mongostart="sudo mongod -f /opt/local/etc/mongodb/mongod.conf"mongostop_func () {# local mongopid=`ps -o pid,command -ax | grep mongod | awk '!/awk/ && !/grep/{print $1}'`;# just find a simpler way local mongopid=`less /opt/local/var/db/mongodb_data/mongod.lock`; if [[ $mongopid =~ [[:digit:]] ]]; then sudo kill -15 $mongopid; echo mongod process $mongopid terminated; else echo mongo process $mongopid not exist; fi}alias mongostop="mongostop_func"
4 use the following command to start and stop mongo
$ mongostartforked process: 2057all output going to: /opt/local/var/log/mongodb/mongodb.log$ mongostopmongod process 2057 terminated
Compile gcc at OpenBSD
tar xzf gcc-4.6.3.tar.gz
cd gcc-4.6.3
./contrib/download_prerequisites
cd ..
mkdir objdir
cd objdir
$PWD/../gcc-4.6.3/configure --prefix=/opt/gcc-4.6.3
make
make install
http://gcc.gnu.org/wiki/InstallingGCC
And also, you may need pkg_add gmake.