我想要的是能够制作一个"标题",我可以在其中加密数据.我应该可以在emacs中的同一个文件中有多个标题.
我有这个工作,但不幸的是我不记得我需要做什么来加密数据.作为参考,这是我必须添加到我的.emacs以使其工作:
(require 'org-crypt)
(org-crypt-use-before-save-magic)
(setq org-tags-exclude-from-inheritance (quote ("crypt")))
;; GPG key to use for encryption
;; Either the Key ID or set to nil to use symmetric encryption.
(setq org-crypt-key nil)
Run Code Online (Sandbox Code Playgroud)
到目前为止我尝试过::crypt:
在我的标题之前使用,在标题上运行M-x org-encrypt-entry
.
我知道要编译到汇编,我应该使用或者-S
选项,但是我如何获得MIPS汇编?gcc
g++
我试过了
g++ -march=mips2 dll.c
Run Code Online (Sandbox Code Playgroud)
但这给出了错误
dll.c:1:0: error: bad value (mips2) for -march= switch
Run Code Online (Sandbox Code Playgroud)
我看到了编译命令的建议mips_gcc
,但我找不到如何安装该编译器.
我正在使用Ubuntu 64位,如果这有帮助的话.