Skip to content

Commit

Permalink
modified CFLAGS for release build to use only "-O1 -DNDEBUG" and not …
Browse files Browse the repository at this point in the history
…"-O3 -fomit-frame-pointer -DNDEBUG" as that seems to be the only way to get problems in initiating connections to google.com solved in short term. Nor increasing the optimization level nor using omit-frame-pointer option seems to be currently possible. This refs #8.
  • Loading branch information
jens-maus committed Nov 14, 2016
1 parent a5b56c9 commit 46ef735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openssl/Configurations/10-main.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1874,7 +1874,7 @@ sub vms_info {
ranlib => "m68k-amigaos-ranlib",
cflags => picker(default => "-mcrt=clib2 -m68020-60 -msoft-float -DNO_INLINE_VARARGS -D__NO_NET_API -DB_ENDIAN -DOPENSSL_SYS_AMIGA -D__amigaos3__ -DOPENSSL_NO_STDIO -D__C_MACROS__ -I../../include -I../../include/netinclude -W -Wall -Wno-unused",
debug => "-O0 -g -gstabs -DBN_DEBUG -DCONF_DEBUG -DDEBUG",
release => "-O3 -fomit-frame-pointer -DNDEBUG"),
release => "-O1 -DNDEBUG"), # only -O1 and only without omit-frame-pointer works with GCC 2.95.3?
lib_cflags => "-resident32 -DAMISSL_COMPILE -I../../libcmt",
bin_cflags => "-I../../openssl",
thread_cflag => "(unknown)",
Expand Down

0 comments on commit 46ef735

Please sign in to comment.