This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/package/develop/gcc/gcc.conf | |
+++ b/package/develop/gcc/gcc.conf | |
@@ -109,14 +109,29 @@ if atstage toolchain; then | |
export LDFLAGS="-Wl,-rpath,${root}${libdir}" | |
fi | |
+libstdcpp_build() { | |
+ mkdir libstdc++; cd libstdc++ | |
+ configscript="../libstdc++-v3/configure" | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# I use SSH URLs in my submodules for convenience. However, Travis CI is unable to | |
# clone from those URLs even though the repositories are public. To fix this, I'm | |
# simply manipulating the .gitmodules file with sed so it points to the public | |
# URLs before initializing the submodules. | |
# | |
# Hope it saves you some frustration! | |
# | |
# disable the default submodule logic |