aboutsummaryrefslogtreecommitdiff
path: root/.ycm_extra_conf.py
diff options
context:
space:
mode:
authorflu0r1ne <flu0r1ne@flu0r1ne.net>2023-07-13 12:20:29 -0500
committerflu0r1ne <flu0r1ne@flu0r1ne.net>2023-07-13 12:20:29 -0500
commit2cb9b6fdc38a5df00ade737f90a9daf685ab89c3 (patch)
tree0a01a5fff4785520ae1a8d400b36f6bcdf84c532 /.ycm_extra_conf.py
downloadfreqtimer-web-2cb9b6fdc38a5df00ade737f90a9daf685ab89c3.tar.xz
freqtimer-web-2cb9b6fdc38a5df00ade737f90a9daf685ab89c3.zip
Init commit
Diffstat (limited to '.ycm_extra_conf.py')
-rw-r--r--.ycm_extra_conf.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py
new file mode 100644
index 0000000..6e9c2b1
--- /dev/null
+++ b/.ycm_extra_conf.py
@@ -0,0 +1,21 @@
+def Settings( **kwargs ):
+ return {
+ 'flags': [
+ '-Wall', '-Wextra', '-Werror',
+ '-target', 'wasm32-unknown-emscripten',
+ '-fignore-exceptions',
+ '-fvisibility=default',
+ '-mllvm',
+ '-combiner-global-alias-analysis=false',
+ '-enable-emscripten-sjlj',
+ '-disable-lsr',
+ '-DEMSCRIPTEN',
+ '--sysroot=/home/flu0r1ne/.emscripten_cache/sysroot',
+ '-Xclang -iwithsysroot/include/fakesdl',
+ '-Xclang -iwithsysroot/include/compat',
+ '-Itest/include',
+ '-Isrc',
+ '-std=c++20',
+ '-Wno-unused-function',
+ ],
+ }