ports/devel/ghidra/files/patch-GPL_nativeBuildProperties.gradle
gatekeeper e2b8d2a617 devel/ghidra: update 9.1 → 11.1.2, take maintainership
Port was FORBIDDEN, updated last time in 2019, maintainer is innactive.
Tamas Szakaly <sghctoma@gmail.com>, thanks for you work, hope you come
back to FreeBSD porters team!

Install share/ghidra/support/launch.properties as a @sample file.

Changelogs:
https://htmlpreview.github.io/?https://raw.githubusercontent.com/NationalSecurityAgency/ghidra/Ghidra_11.1.2_build/Ghidra/Configurations/Public_Release/src/global/docs/ChangeHistory.html

PR:	280378 275383 244345
MFH:	2024Q3
2024-07-26 23:39:31 +03:00

22 lines
493 B
Groovy

--- GPL/nativeBuildProperties.gradle.orig 2024-07-09 10:18:28 UTC
+++ GPL/nativeBuildProperties.gradle
@@ -53,12 +53,16 @@ model {
}
}
if (isCurrentFreeBSD()) {
- gcc(Gcc) {
+ clang(Clang) {
if (isCurrentArm_64()) {
- target("freebsd_arm_64")
+ target("freebsd_arm_64") {
+ cCompiler.executable = 'clang'
+ }
}
else {
- target("freebsd_x86_64")
+ target("freebsd_x86_64") {
+ cCompiler.executable = 'clang'
+ }
}
}
}