mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
13 lines
333 B
Bash
Executable file
13 lines
333 B
Bash
Executable file
#!/bin/bash
|
|
# Update compiler flags
|
|
if [ "${CXX:0:7}" = "clang++" ]; then
|
|
export CXX="clang++-3.8"
|
|
export CC="clang-3.8"
|
|
export CXXFLAGS="${CXXFLAGS} -Qunused-arguments"
|
|
elif [ "${CXX:0:3}" = "g++" ]; then
|
|
export CXX="g++-5"
|
|
export CC="gcc-5"
|
|
elif [ "${CXX:0:3}" = "gcc" ]; then
|
|
export CXX="g++-5"
|
|
export CC="gcc-5"
|
|
fi
|