mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 11:56:28 -04:00
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
22 lines
493 B
Groovy
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'
|
|
+ }
|
|
}
|
|
}
|
|
}
|