क्या emacs में बिल्ड सेटिंग्स प्रदर्शित करने का विकल्प है?


12

क्या emacs में कोई विकल्प या कुछ आंतरिक कमांड होती है जो समय सेटिंग का निर्माण करती है और जो भी सुविधाएँ इसका समर्थन करती हैं?

एक अच्छा उदाहरण nginx -Vकमांड है जो उन ./configureविकल्पों को सूचीबद्ध करता है जिनके साथ इसे संकलित किया गया था।

जवाबों:


15

system-configuration-optionsचर पर एक नजर डालें ।

यहाँ एक उदाहरण है, जो चलने का परिणाम है C-h v system-configuration-options

system-configuration-options is a variable defined in `C source code'.
Its value is
"--prefix=/usr/local/emacs 'CFLAGS=-O2 -march=native -pipe
-falign-functions=64 -fomit-frame-pointer -ftracer -funit-at-a-time
-fweb -fforce-addr -fpeel-loops -funswitch-loops -frename-registers
-mfpmath=sse -ffast-math -fno-finite-math-only -fstack-check'
PKG_CONFIG_PATH=/usr/share/pkgconfig"

Documentation:
String containing the configuration options Emacs was built with.

For more information check the manuals.

3

एक कमांड लाइन स्विच के बारे में पता नहीं है, लेकिन:

  1. यदि आप पुस्तकालय का उपयोग करते हैं emacsbug+.el, जो मानक पुस्तकालय को बढ़ाता है emacsbug.el, तो आप ebp-insert-versionवर्तमान बफर में कुछ बिल्ड जानकारी सहित पूर्ण संस्करण की जानकारी सम्मिलित करने के लिए उपसर्ग arg के साथ कमांड का उपयोग कर सकते हैं । यह वही संस्करण जानकारी है जो तब शामिल होती है जब आप कमांड का उपयोग करते हैं report-emacs-bug। उदाहरण के लिए:

     In GNU Emacs 25.2.1 (x86_64-w64-mingw32)
      of 2017-04-24
     Windowing system distributor `Microsoft Corp.', version 6.1.7601
     Configured using:
      `configure --without-dbus --without-compress-install 'CFLAGS=-O2
      -static -g3''
    
  2. पुस्तकालय के बिना emacsbug+.el, आप मानक कमांड का उपयोग कर सकते हैं emacs-version, ताकि आप उस जानकारी का एक सबसेट दे सकें। उपसर्ग arg के साथ यह वर्तमान बफ़र में जानकारी सम्मिलित करता है। उदाहरण के लिए:

    GNU Emacs 25.2.1 (x86_64-w64-mingw32) of 2017-04-24
    
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.