We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8187bdd commit 60ad26cCopy full SHA for 60ad26c
src/goto-cc/as_mode.cpp
@@ -303,7 +303,7 @@ int as_modet::as_hybrid_binary()
303
debug() << "merging " << output_file << eom;
304
std::string saved=output_file+".goto-cc-saved";
305
306
- #ifdef __linux__
+ #if defined(__linux__) || defined(__FreeBSD_kernel__)
307
if(result==0)
308
{
309
// remove any existing goto-cc section
src/goto-cc/hybrid_binary.cpp
@@ -26,7 +26,7 @@ int hybrid_binary(
26
27
int result;
28
29
-#ifdef __linux__
+#if defined(__linux__) || defined(__FreeBSD_kernel__)
30
std::string objcopy_cmd;
31
32
if(has_suffix(compiler_or_linker, "-ld"))
0 commit comments