about summary refs log tree commit diff
path: root/src/afl-cc.c
diff options
context:
space:
mode:
authorDavid CARLIER <devnexen@gmail.com>2020-11-18 18:13:03 +0000
committerGitHub <noreply@github.com>2020-11-18 19:13:03 +0100
commitb260204b728efcc4ba13dfa77692cfc5721db606 (patch)
tree1edc9679c5d032cd35589f8442c07075349c128c /src/afl-cc.c
parent211a6eb411a6e57cd22a24bb50ae095676d8b0c5 (diff)
downloadafl++-b260204b728efcc4ba13dfa77692cfc5721db606.tar.gz
Solaris/Illumos build fix. (#609)
Diffstat (limited to 'src/afl-cc.c')
-rw-r--r--src/afl-cc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c
index 9c23c18b..19dc9a6a 100644
--- a/src/afl-cc.c
+++ b/src/afl-cc.c
@@ -837,7 +837,7 @@ static void edit_params(u32 argc, char **argv, char **envp) {
 
     }
 
-  #ifndef __APPLE__
+  #if !defined(__APPLE__) && !defined(__sun)
     if (!shared_linking)
       cc_params[cc_par_cnt++] =
           alloc_printf("-Wl,--dynamic-list=%s/dynamic_list.txt", obj_path);