Updated
This commit is contained in:
Symlink
+1
@@ -0,0 +1 @@
|
||||
true
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
true
|
||||
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ ! -z "$YCM_CONFIG_GEN_CC_PASSTHROUGH" ]; then
|
||||
# Cmake determines compiler properties by compiling a test file, so call clang for this case
|
||||
$YCM_CONFIG_GEN_CC_PASSTHROUGH $@
|
||||
|
||||
elif [ "$1" = "-v" ] || [ "$1" = "--version" ]; then
|
||||
# Needed to enable clang-specific options for certain build systems (e.g. linux)
|
||||
$YCM_CONFIG_GEN_CC_PASSTHROUGH $@
|
||||
|
||||
else
|
||||
echo "$@" >> $YCM_CONFIG_GEN_CC_LOG
|
||||
fi
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
cc
|
||||
+1
@@ -0,0 +1 @@
|
||||
cxx
|
||||
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ ! -z "$YCM_CONFIG_GEN_CC_PASSTHROUGH" ]; then
|
||||
# Cmake determines compiler properties by compiling a test file, so call clang for this case
|
||||
$YCM_CONFIG_GEN_CXX_PASSTHROUGH $@
|
||||
|
||||
elif [ "$1" = "-v" ] || [ "$1" = "--version" ]; then
|
||||
# Needed to enable clang-specific options for certain build systems (e.g. linux)
|
||||
$YCM_CONFIG_GEN_CC_PASSTHROUGH $@
|
||||
|
||||
else
|
||||
echo "$@" >> $YCM_CONFIG_GEN_CXX_LOG
|
||||
fi
|
||||
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
cxx
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
cc
|
||||
+1
@@ -0,0 +1 @@
|
||||
cxx
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
true
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
true
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This script is needed because /bin/true does not exist on non-FHS-compliant distros. e.g. NixOS
|
||||
exit 0
|
||||
|
||||
Reference in New Issue
Block a user