Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jmaitrehenry/6ff032a43a604af346562a262fc4d262 to your computer and use it in GitHub Desktop.
Save jmaitrehenry/6ff032a43a604af346562a262fc4d262 to your computer and use it in GitHub Desktop.
bash-4.3# apk add --update --no-cache python build-base curl ruby-json
fetch http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
fetch http://nl.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
fetch http://nl.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
OK: 248 MiB in 61 packages
bash-4.3# cat test.cpp
#include <set>
using namespace std;
int main(){
set<int> aSet();
return 0;
}
bash-4.3# gcc test.cpp
test.cpp:1:15: fatal error: set: No such file or directory
compilation terminated.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment