emacs-devel
[Top][All Lists]
Advanced

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

Re: No atimers?


From: Robert J. Chassell
Subject: Re: No atimers?
Date: Tue, 16 Jul 2002 20:22:26 +0000 (UTC)

Here are better expressions for building Emacs -- here I set 
    gcc=gcc-3.0
so both CC and CPP use GCC 3 rather than the one use GCC 3 and the
other use GCC 2.95.  (Incidentally, this change does not change the
cursor timer issue.)



;; ---------------------------------

;; for make recompile (done as non-privileged user)

     (progn 
       (cd "/usr/local/src/emacs/")
       (compile
        "time gcc=gcc-3.0 make && cd lisp && \
         time gcc=gcc-3.0 make recompile \
             EMACS=/usr/local/src/emacs/src/emacs"))

;; for install (done as root)

  (progn (cd "/usr/local/src/emacs/")
  (compile "gcc=gcc-3.0 time make install"))

;; ---------------------------------

;; ---------------------------------

;; for make boostrap (done as non-privileged user)
     (progn 
       (cd "/usr/local/src/emacs/")
       (compile
        "gcc=gcc-3.0 ./configure --with-type1 --prefix=/usr/local \
          --with-sound=yes \
          && gcc=gcc-3.0 time make bootstrap"))

;; for install (done as root) (same as for `make recompile' install)

  (progn (cd "/usr/local/src/emacs/")
  (compile "gcc=gcc-3.0 time make install"))

;; ---------------------------------




reply via email to

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