From 76d4d6b2bafada7b790e817b7324d53f3d3a0c7f Mon Sep 17 00:00:00 2001 From: David Timber Date: Thu, 20 Aug 2020 12:23:35 +0930 Subject: Progress ... * Move DVault out of executable. Dynamically load it on startup * Improved testing scheme * Tidy up prne_*assert* macro series * Protocol: store host credentials in base64 string. No mask * Use the lock shm as a shared_global so the stats can persist * mmap() the executable read-only for later use --- scripts/xcomp.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 scripts/xcomp.sh (limited to 'scripts/xcomp.sh') diff --git a/scripts/xcomp.sh b/scripts/xcomp.sh deleted file mode 100755 index 3aa050f..0000000 --- a/scripts/xcomp.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -set -e - -separate_debug() { - cp -a "$1" "$2" - "$PROONE_HOST-objcopy" --only-keep-debug "$2" "$3" - "$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 "$2" - "$PROONE_HOST-objcopy" --add-gnu-debuglink="$3" "$2" -} - -BIN_DBG="$PROONE_DEBUG_SYM_PREFIX.$PROONE_BIN_ARCH" -BIN_REL="$PROONE_REL_BIN_PREFIX.$PROONE_BIN_ARCH" - -./configure --host="$PROONE_HOST" $PROONE_AM_CONF -make -j$(nproc) - -separate_debug src/proone "$BIN_REL" "$BIN_DBG" -cp -a src/proone-stress "$PROONE_MISC_BIN_PREFIX/proone-stress.$PROONE_BIN_ARCH" -cp -a src/proone-arch-test "$PROONE_MISC_BIN_PREFIX/proone-arch-test.$PROONE_BIN_ARCH" - -make distclean -- cgit