diff options
author | David Timber <mieabby@gmail.com> | 2020-08-20 12:23:35 +0930 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-08-20 15:15:57 +0930 |
commit | 76d4d6b2bafada7b790e817b7324d53f3d3a0c7f (patch) | |
tree | d8b3669fa7b167fc3bf764e971fc6e70bd8d9b49 /scripts/xcomp.sh | |
parent | 7bd3eb3b1ad4209ac4cf4b46f849213d46bc33aa (diff) |
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
Diffstat (limited to 'scripts/xcomp.sh')
-rwxr-xr-x | scripts/xcomp.sh | 21 |
1 files changed, 0 insertions, 21 deletions
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 |