MaskRay 最近的时间轴更新
MaskRay's repos on GitHub
C++ · 3638 人关注
ccls
C/C++/ObjC language server supporting cross references, hierarchies, completion and semantic highlighting
OCaml · 30 人关注
CamlFeatherweight
Bytecode compiler of a variant of Caml
TeX · 13 人关注
2016-09-24-cgc-defcon-ctf-presentation
My presentation on Cyber Grand Challenge and DEFCON 24 CTF at SHLUG monthly meeting
OCaml · 11 人关注
99-problems-ocaml
99 Lisp Problems in OCaml
C++ · 5 人关注
BCTF-2016-hsab-and-BetaFour
Two challenges hsab and BetaFour for BCTF 2016
Rust · 4 人关注
99-problems-rust
Ninety-Nine Lisp Problems in Rust
C++ · 4 人关注
ArtificialIntelligence2013Spring
ArtificialIntelligence2013Spring
JavaScript · 3 人关注
byvblog
BYVblog is a pure HTML5 and client JavaScript Blog system.
3 人关注
ccls-static
Ruby · 2 人关注
99-problems-ruby
1 人关注
abseil-cpp
Abseil Common Libraries (C++)
C++ · 1 人关注
AI2013Dev
人工智能大作業Linux開發環境
Emacs Lisp · 1 人关注
awesome-emacs
A community driven list of useful Emacs packages, libraries and others.
OCaml · 1 人关注
BCTF2015-CamlMaze
BCTF 2015 CamlMaze
0 人关注
abi-aa
Application Binary Interface for the Arm® Architecture
CoffeeScript · 0 人关注
accounts9-plugins
Plugin collection for accounts9
0 人关注
AMDVLK
AMD Open Source Driver For Vulkan
Shell · 0 人关注
ansible-vps
VPS provisioning
JavaScript · 0 人关注
APrettyPrinterLibraryInHaskell
Presentation of Philip Wadler's Pretty Printer Library
C · 0 人关注
ARM_NEON_2_x86_SSE
C++ · 0 人关注
asteria
The Asteria Programming Language
0 人关注
bazel
a fast, scalable, multi-language and extensible build system
0 人关注
bcc
BCC - Tools for BPF-based Linux IO analysis, networking, monitoring, and more
C · 0 人关注
bfs
Breadth-first version of find.
C · 0 人关注
binutils-gdb
Unofficial mirror of sourceware binutils-gdb repository. Updated daily.
C · 0 人关注
bitlbee
An IRC to other chat networks gateway :bee:
0 人关注
BLAKE3
the official Rust and C implementations of the BLAKE3 cryptographic hash function
C++ · 0 人关注
bpftrace
High-level tracing language for Linux eBPF
0 人关注
capnproto
Cap'n Proto serialization/RPC system - core tools and C++ library
Haskell · 0 人关注
cblrepo
Tool to simplify managing a consistent set of Haskell packages for distributions.
MaskRay

MaskRay

V2EX 第 33215 号会员,加入于 2013-01-28 20:22:08 +08:00
C/C++/ObjC language server ccls 0.20181225 release
程序员  •  MaskRay  •  2018-12-29 00:52:04 AM  •  最后回复来自 saintaugustinus
4
使用 cquery: C++ language server
  •  7   
    Vim  •  MaskRay  •  2018-05-14 14:55:10 PM  •  最后回复来自 MaskRay
    18
    用 IRC 控制微信——wechatircd 最近更新
    分享发现  •  MaskRay  •  2017-02-20 17:30:57 PM  •  最后回复来自 cf3e613
    1
    telegramircd——用 IRC 客户端控制 Telegram
    JavaScript  •  MaskRay  •  2016-05-08 08:57:10 AM  •  最后回复来自 uuair
    1
    webqqircd (webqq -> irc server, 类似的还有 wechatircd)
  •  2   
    编程  •  MaskRay  •  2016-04-12 10:04:58 AM  •  最后回复来自 MaskRay
    2
    wechatircd——用 IRC 客户端控制微信网页版
    微信  •  MaskRay  •  2016-03-16 20:48:46 PM  •  最后回复来自 MaskRay
    4
    MaskRay 最近回复了
    168 天前
    回复了 xuelang 创建的主题 C++ C++ 链接符号决议 -- 自以为懂了,结果...
    ODR violation 参见 https://maskray.me/blog/2022-11-13-odr-violation-detection 我打算把这个检测工具写完……

    > 还有一点,linux so 动态链接库里的符号可以是未决的,但是 dll 缺一个函数,都没办法生成。光是这点,微软就已经领先 100 年。

    这个可以怪 ELF linkers 默认选得不好(-z undefs)。如果链接 DSO 时用-z defs 就不会未决了

    https://maskray.me/blog/2021-06-13-dependency-related-linker-options#z-defs
    2020-09-30 14:45:34 +08:00
    回复了 liuminghao233 创建的主题 问与答 有没有参数可以修改 linker 重定位符号的方式
    objdump -dr 可以看使用的 relocation type

    LLD 只优化 R_X86_64_[REX_]GOT_PCRELX (-Wa,-mrelax-relocations=yes)
    对于

    (1) movq foo@GOTPCREL(%rip), %reg -> leaq foo(%rip), %reg
    (2) call *foo@GOTPCREL(%rip) -> nop; call foo
    (3) jmp *foo@GOTPCREL(%rip) -> jmp foo; nop

    GNU ld 对于 R_X86_64_[REX_]GOT_PCREL (注意没有 X)也会优化 (1)
    2018-07-16 04:55:34 +08:00
    回复了 a7a2 创建的主题 程序员 leetcode 上的比赛的人太厉害了
    @ynyounuo 我是來推廣 https://github.com/MaskRay/ccls/ 的(C/C++/ObjC language server)(昨天終於全盤拋棄 libclang 換上 Clang C++ API 了 :)
    2018-05-29 13:52:26 +08:00
    回复了 skywind3000 创建的主题 Vim Vim 8 下面如何搭建 C/C++ 开发环境
    可以来用我的 MaskRay/ccls 少了近 6000 行代码,更少 third_party。$ccls/memberHierarchy textDocument/definition workspace/symbol 一些细节有改进,cacheFormat 默认 binary 比 msgpack 更小,pipeline 简化但更不容易被保存弄坏

    等待 LanguageClient-neovim/issues/293 autozimu 把这个 custom xref 接口弄通用点支持 $ccls/base 等
    2018-05-29 13:49:32 +08:00
    回复了 marcosteam 创建的主题 问与答 一些关于 C++编译,或者说是它们的文本编辑器的小问题
    @inflationaaron 也可以来用我的 https://github.com/MaskRay/ccls $ccls/memberHierarchy textDocument/definition workspace/symbol 一些细节有改进,cacheFormat 默认 binary 比 msgpack 更小,pipeline 简化但更不容易被保存弄坏
    2018-05-14 14:55:10 +08:00
    回复了 MaskRay 创建的主题 Vim 使用 cquery: C++ language server
    原來都已經半年了……我現在用自己的 fork https://github.com/MaskRay/ccls

    移除了不必要的第三方依賴
    import_pipeline.cc 比原來簡單的多,效果更好(index merge, id map 都是 cquery 中不妥當的設計,我上週移除了)
    mem index 有少量提升

    https://github.com/autozimu/LanguageClient-neovim/issues/293 自定義 cross reference 能支持就最好了
    2017-12-10 05:42:15 +08:00
    回复了 MaskRay 创建的主题 Vim 使用 cquery: C++ language server
    @forestyuan 是的。希望能找到更多有 C/C++代碼閱讀需求的 geek 用戶貢獻這個項目。很多 code assistant 功能靠 clangd 這種大教堂模式是搞不好的
    2017-12-10 05:41:07 +08:00
    回复了 MaskRay 创建的主题 Vim 使用 cquery: C++ language server
    @glacier2002 原文裏有幾張圖,內容改了點……這裏編輯困難
    2016-04-12 10:04:58 +08:00
    回复了 MaskRay 创建的主题 编程 webqqircd (webqq -> irc server, 类似的还有 wechatircd)
    @oott123 因为要扫码登录……登录时留个 head 方便,既然有了就常驻好了……
    2016-03-16 20:48:46 +08:00
    回复了 MaskRay 创建的主题 微信 wechatircd——用 IRC 客户端控制微信网页版
    多支持两个命令
    `/dcc send nick/channel filename`,给微信朋友或微信群发图片 /文件。参见<https://en.wikipedia.org/wiki/Direct_Client-to-Client#DCC_SEND>
    `/summon nick message`,添加朋友, message 为验证信息
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2956 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 62ms · UTC 13:24 · PVG 21:24 · LAX 06:24 · JFK 09:24
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.