Skip to content

Instantly share code, notes, and snippets.

View iedemam's full-sized avatar

Michael Iedema iedemam

View GitHub Profile
--- 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"
+
@iedemam
iedemam / gist:9830045
Created March 28, 2014 10:50
Automatically manipulate .gitmodules so Travis CI pulls submodules from public URL instead of SSH URL.
#
# 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