help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Resources for an old newbie ?


From: Basile Starynkevitch
Subject: Re: Resources for an old newbie ?
Date: Sun, 4 Jun 2023 09:08:56 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0


On 6/4/23 07:25, Eli Zaretskii wrote:
From: David Masterson <dsmasterson@gmail.com>
Date: Sat, 03 Jun 2023 18:00:30 -0700

# 1. setup directories
src_dir=~/src
emacs_dir=${src_dir}/emacs
mkdir -p $emacs_dir

# 2. get dependencies
sudo apt-get -qq update
sudo apt-get install build-essential debian-goodies libgccjit-10-dev
sudo apt-get build-dep emacs
This pulled in a *LOT* of stuff.



I am recompiling latest GNU emacs every morning (on Debian or Ubuntu desktop) with the following script, the source code is (conventionally) on my computer in  /usr/src/Editors/emacs
(which I initialized once with the appropriate git clone).

#! /bin/bash -x
export PATH=/usr/bin:/bin
sync
cd /usr/src/Editors/emacs
rm -f etc/DOC*
git  pull
git  log -3 | cat
sync
rm -rf /tmp/emacsinst/
time nice make -j  -l 9 || exit 1
time make  install DESTDIR=/tmp/emacsinst || exit 1
sudo cp -v -r -p /tmp/emacsinst/usr/local/. /usr/local/.
sync


BTW, my pet open source project (for Linux) is the RefPerSys inference engine on http://refpersys.org/ and source code on https://github.com/RefPerSys/RefPerSys


Regards from near Paris in France

--
Basile Starynkevitch                  <basile@starynkevitch.net>
(only mine opinions / les opinions sont miennes uniquement)
92340 Bourg-la-Reine, France
web page: starynkevitch.net/Basile/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]