mirror of
https://github.com/audacity/linuxdeploy.git
synced 2026-04-12 17:02:23 -05:00
10 lines
370 B
Bash
Executable File
10 lines
370 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# get a compiler that allows for using modern-ish C++ (>= 11) on a distro that doesn't normally support it
|
|
# before you ask: yes, the binaries will work on CentOS 6 even without devtoolset (they somehow partially link C++
|
|
# things statically while using others from the system...)
|
|
# so, basically, it's magic!
|
|
source /opt/rh/devtoolset-*/enable
|
|
|
|
exec "$@"
|