mirror of
https://github.com/lifting-bits/remill
synced 2026-06-21 13:56:07 +00:00
0183248218
* llvm 17 fix
* more instances
* more fixes
* add inline
* bump ci
* bump cxx common
* add 17 case
* bump xcode version
* macos 13
* xcode 15
* bump docker to llvm 17
* change actual matrix value
* opaque pointers are the default now
* actually remove the option
* debug size
* install tree
* fix install
* fix install?
* get tree after
* build dir?
* tree above
* accumulate
* bug?
* try to remove intermediate packaging
* fix opt
* only inline
* give up on function inlining
* llvm 17
* remove debug tasks
* Update scripts/build.sh
Co-authored-by: William Tan <1284324+Ninja3047@users.noreply.github.com>
* Revert "Update scripts/build.sh"
This reverts commit 6c727a539d.
* debug
* try clear out old build
* retest
* try to save more space
* up
* Clear space and don't use cxx-common docker image (#689)
* Clear space and don't use cxx-common docker image
* Run on all PRs
* Fix perms
* Remove some unnecessary apt commands
* Install LLVM version as root
* Allow writing to external target
* Build before running tests
* Install with sudo
* Simplify with container volume mounts
---------
Co-authored-by: William Tan <1284324+Ninja3047@users.noreply.github.com>
Co-authored-by: Eric Kilmer <eric.d.kilmer@gmail.com>
17 lines
219 B
Bash
Executable File
17 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Needed to process multiple arguments to docker image
|
|
|
|
V=""
|
|
case ${LLVM_VERSION} in
|
|
llvm17*)
|
|
V=17
|
|
;;
|
|
*)
|
|
echo "Unknown LLVM version: ${LLVM_VERSION}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
remill-lift-${V} "$@"
|