Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Support for OpenSSL 1.1.0 #1838

Closed
Earnestly opened this issue Apr 12, 2017 · 32 comments
Closed

Add Support for OpenSSL 1.1.0 #1838

Earnestly opened this issue Apr 12, 2017 · 32 comments

Comments

@Earnestly
Copy link

  • Linux 4.10.8 (Arch Linux)
  • GCC 6.3.1
  • OpenSSL 1.1.0e 16 Feb 2017

Currently when attempting to link stdlib.o I get the following undefined reference errors:

./stdlib.o:stdlib:function ssl__SSLInit_box__init_o: error: undefined reference to 'SSL_load_error_strings'
./stdlib.o:stdlib:function ssl__SSLInit_box__init_o: error: undefined reference to 'SSL_library_init'
./stdlib.o:stdlib:function ssl__SSLInit_box__init_o: error: undefined reference to 'CRYPTO_num_locks'
./stdlib.o:stdlib:function ssl__SSLInit_box__init_o: error: undefined reference to 'CRYPTO_set_locking_callback'
./stdlib.o:stdlib:function ssl__SSLInit_val__init_o: error: undefined reference to 'SSL_load_error_strings'
./stdlib.o:stdlib:function ssl__SSLInit_val__init_o: error: undefined reference to 'SSL_library_init'
./stdlib.o:stdlib:function ssl__SSLInit_val__init_o: error: undefined reference to 'CRYPTO_num_locks'
./stdlib.o:stdlib:function ssl__SSLInit_val__init_o: error: undefined reference to 'CRYPTO_set_locking_callback'
./stdlib.o:stdlib:function crypto_Digest_ref_sha512_o: error: undefined reference to 'EVP_MD_CTX_create'
./stdlib.o:stdlib:function crypto_Digest_ref_final_o: error: undefined reference to 'EVP_MD_CTX_cleanup'
./stdlib.o:stdlib:function crypto_Digest_ref_md5_o: error: undefined reference to 'EVP_MD_CTX_create'
collect2: error: ld returned 1 exit status
Error:
unable to link: cc -o ./stdlib -O3 -march=native -mcx16 -fuse-ld=gold ./stdlib.o -L"/home/earnest/build/pkgbuilds/ponyc-git/src/ponyc/build/release/" -Wl,-rpath,"/home/earnest/build/pkgbuilds/ponyc-git/src/ponyc/build/release/" -L"/home/earnest/build/pkgbuilds/ponyc-git/src/ponyc/build/release/../../packages" -Wl,-rpath,"/home/earnest/build/pkgbuilds/ponyc-git/src/ponyc/build/release/../../packages" -L"/usr/local/lib" -Wl,-rpath,"/usr/local/lib" -Wl,--start-group -l"rt" -l"crypto" -l"pcre2-8" -l"ssl" -Wl,--end-group  -lponyrt -lpthread -ldl -lm -Wl,--export-dynamic-symbol=__DescTable -Wl,--export-dynamic-symbol=__DescTableSize
make: *** [Makefile:752: test] Error 255

This is notably due to changes in OpenSSL 1.1.0 and its deprecation of these functions. For example SSL_library_init is now OPENSSL_init_ssl.

Perhaps this mailing list post and its referenced links might be of use when figuring this out: https://www.mail-archive.com/[email protected]/msg36437.html

@CorbeauBlanc
Copy link

CorbeauBlanc commented Jun 10, 2017

Yop I have exactly the same problem on Arch too. Since I'm only a beginner in Pony I don't need all that net stuff so I just removed it from the stdlib by commenting lines here and there, and It's working fine now. My /usr/lib/pony/0.13.1/packages/stdlib/_test.pony file looks like this currently :
_test.pony.txt

@SeanTAllen
Copy link
Member

OpenSSL 1.1.0 is currently unsupported. You'd need an older, supported version.

@crzbear
Copy link

crzbear commented Aug 18, 2017

the changes to use openssl 1.1 are actually very few, however that code won't work with 1.0
we cant exactly ifdef on OPENSSL_VERSION_NUMBER in pony source files

@jemc jemc changed the title Linking failure with OpenSSL 1.1.0 Add Support for OpenSSL 1.1.0 Aug 18, 2017
@lisael
Copy link
Contributor

lisael commented Aug 18, 2017

I ran into this while running the complete test suite. The SSL API changes are documented here: https://wiki.openssl.org/index.php/OpenSSL_1.1.0_Changes

@winksaville
Copy link
Contributor

winksaville commented Nov 22, 2017

I make no claims this is correct and it may erase all of the data on your computer, but it looks to have worked for me.

I came up with the change after looking at https://wiki.openssl.org/index.php/Library_Initialization and /usr/include/openssl/ssl.h crypto.h and evp.h. Which I applied on top of the PR #2303 changes and successfully compiled the stdlib tests:

$ ./build/debug/ponyc -d -s --checktree --verify packages/stdlib
Building builtin -> /home/wink/prgs/pony/ponyc/packages/builtin
Building packages/stdlib -> /home/wink/prgs/pony/ponyc/packages/stdlib
Building ponytest -> /home/wink/prgs/pony/ponyc/packages/ponytest
Building time -> /home/wink/prgs/pony/ponyc/packages/time
Building collections -> /home/wink/prgs/pony/ponyc/packages/collections
Building assert -> /home/wink/prgs/pony/ponyc/packages/assert
Building encode/base64 -> /home/wink/prgs/pony/ponyc/packages/encode/base64
Building buffered -> /home/wink/prgs/pony/ponyc/packages/buffered
Building builtin_test -> /home/wink/prgs/pony/ponyc/packages/builtin_test
Building bureaucracy -> /home/wink/prgs/pony/ponyc/packages/bureaucracy
Building promises -> /home/wink/prgs/pony/ponyc/packages/promises
Building capsicum -> /home/wink/prgs/pony/ponyc/packages/capsicum
Building files -> /home/wink/prgs/pony/ponyc/packages/files
Building cli -> /home/wink/prgs/pony/ponyc/packages/cli
Building collections/persistent -> /home/wink/prgs/pony/ponyc/packages/collections/persistent
Building random -> /home/wink/prgs/pony/ponyc/packages/random
Building crypto -> /home/wink/prgs/pony/ponyc/packages/crypto
Building format -> /home/wink/prgs/pony/ponyc/packages/format
Building debug -> /home/wink/prgs/pony/ponyc/packages/debug
Building glob -> /home/wink/prgs/pony/ponyc/packages/glob
Building regex -> /home/wink/prgs/pony/ponyc/packages/regex
Building net/http -> /home/wink/prgs/pony/ponyc/packages/net/http
Building net -> /home/wink/prgs/pony/ponyc/packages/net
Building net/ssl -> /home/wink/prgs/pony/ponyc/packages/net/ssl
Building ini -> /home/wink/prgs/pony/ponyc/packages/ini
Building itertools -> /home/wink/prgs/pony/ponyc/packages/itertools
Building json -> /home/wink/prgs/pony/ponyc/packages/json
Building logger -> /home/wink/prgs/pony/ponyc/packages/logger
Building math -> /home/wink/prgs/pony/ponyc/packages/math
Building options -> /home/wink/prgs/pony/ponyc/packages/options
Building ponybench -> /home/wink/prgs/pony/ponyc/packages/ponybench
Building term -> /home/wink/prgs/pony/ponyc/packages/term
Building strings -> /home/wink/prgs/pony/ponyc/packages/strings
Building signals -> /home/wink/prgs/pony/ponyc/packages/signals
Building process -> /home/wink/prgs/pony/ponyc/packages/process
Building backpressure -> /home/wink/prgs/pony/ponyc/packages/backpressure
Building serialise -> /home/wink/prgs/pony/ponyc/packages/serialise
Generating
 Reachability
 Selector painting
 Data prototypes
 Data types
 Function prototypes
 Functions
 Descriptors
Verifying
Writing ./stdlib.o
Linking ./stdlib

And ran them:

$ ./stdlib
1 test started, 0 complete: encode/Base64.encode started
2 tests started, 0 complete: encode/Base64.quote started
3 tests started, 0 complete: encode/Base64.decode started
4 tests started, 0 complete: encode/Base64.encodedecode started
4 tests started, 1 complete: encode/Base64.encodedecode complete
4 tests started, 2 complete: encode/Base64.encode complete
...
274 tests started, 272 complete: collections/persistent/Lists (map) complete
274 tests started, 273 complete: collections/persistent/List (apply) complete
274 tests started, 274 complete: collections/persistent/Vec complete
---- Passed: encode/Base64.encode
---- Passed: encode/Base64.decode
---- Passed: encode/Base64.encodedecode
---- Passed: encode/Base64.quote
---- Passed: builtin/Int.abs
...
---- Passed: serialise/Simple
---- Passed: serialise/Arrays
---- Passed: serialise/Failures
---- Passed: serialise/BoxedMachineWord
----
---- 274 tests ran.
---- Passed: 274

@winksaville
Copy link
Contributor

Now that there is experimental support for 4.0.1 and 5.0.0 on master it would be nice to get openssl 1.1 support in also, expecially for Arch Linux which is using it as the default. So I need some advice on how to proceed. My current change, test-openssl1.1, is "working" for openssl 1.1.0 so I think the next step is to get it to work for openssl 1.0.2.

What I think is needed is have some type of conditional compiliation. So maybe something like the following could be done in the effected packages. Here's what it might look like for packages/net/ssl/ssl_context.pony:

@@ -18,11 +18,15 @@ class val SSLContext
 
   new create() =>
     """
     Create an SSL context.
     """
-    _ctx = @SSL_CTX_new[Pointer[_SSLContext]](@SSLv23_method[Pointer[None]]())
+    ifdef OPENSSL_API_COMPAT_1_1_0
+      _ctx = @SSL_CTX_new[Pointer[_SSLContext]](@TLS_method[Pointer[None]]())
+    else
+      _ctx = @SSL_CTX_new[Pointer[_SSLContext]](@SSLv23_method[Pointer[None]]())
+    end
 
     // set SSL_OP_NO_SSLv2
     @SSL_CTX_ctrl(_ctx, 32, 0x01000000, Pointer[None])
 
     // set SSL_OP_NO_SSLv3

The problem is I'm not sure how to modify the Makefile to pass "-DOPENSSL_API_COMPAT_1_1_0" when compiling the modified files.

Of course this maybe the totally wrong direction, so suggestions and other ideas welcome!

@jemc
Copy link
Member

jemc commented Nov 28, 2017

@winksaville - do you need the conditional compilation to be resolved at compile time of the ponyc/libponyrt binaries, or at compile time of the pony program (when ponyc is run)?

@winksaville
Copy link
Contributor

winksaville commented Nov 29, 2017 via email

@jemc
Copy link
Member

jemc commented Nov 29, 2017

@winksaville - sorry, which of the two compile times that I mentioned? 😄

@winksaville
Copy link
Contributor

winksaville commented Nov 29, 2017 via email

@jemc
Copy link
Member

jemc commented Nov 29, 2017

@winksaville - I don't think modifying the ponyc Makefile is what you want. The -D argument is going to have to be passed every time the user runs ponyc to compiler their program, based on which is available.

If you want to have it decided forever when running make for ponyc (the compile time of ponyc), then you'd need to add some ponyint_* functions in the C source for ponyc to wrap the incompatible calls in a C-level #ifdef block.

@winksaville
Copy link
Contributor

winksaville commented Nov 29, 2017 via email

@jemc
Copy link
Member

jemc commented Nov 29, 2017

Is it correct that packages are distributed as sources?

Yeah, I think this is the key point - pony doesn't have any concept of a compiled package - only a compiled program. Packages are distributed as source code, and then the Pony compiler looks at all the source files at once and compiles the whole program.

So every time you use the net/ssl package in your program, it will be compiled, and any Pony-level ifdefs will be resolved at that time. So you'd need to include the relevant -D flag when compiling your program. The Makefile in this repo doesn't play any role in that process - it would have to be in the invocation used by the user. Many Pony projects include their own Makefile for passing any relevant flags to the Pony compiler, and generally having more repeatable control over compilation.

@winksaville
Copy link
Contributor

winksaville commented Nov 29, 2017 via email

@winksaville
Copy link
Contributor

winksaville commented Nov 29, 2017

I'm not sure it the correct solution but it works if the ifdef expression is a string:

    ifdef "OPENSSL_API_COMPAT_1_1_0" then
      _ctx = @SSL_CTX_new[Pointer[_SSLContext]](@TLS_method[Pointer[None]]())
    else
      _ctx = @SSL_CTX_new[Pointer[_SSLContext]](@SSLv23_method[Pointer[None]]())
    end

@winksaville
Copy link
Contributor

With my latest change I've successfully compiled ponyc and tested on both an Arch Linux system running openssl 1.1 and a Ubuntu 17.10 system running openssl 1.0.0

@mfelsche
Copy link
Contributor

While i really like being able to compile pony programs against openssl 1.1.0 i dont like having to specify the flag everytime.

Would it be possible to use https://www.openssl.org/docs/man1.1.0/crypto/OpenSSL_version.html to let ponyc create some builtin defines for the underlying libssl and/or libcrypto on which we can do the ifdef without having to specify it manually? The same as we have windows, linux etc. But i guess those are baked into the compiler at its own compile-time while the ssl version can only be determined at pony-program compile -time. And ponyc shouldnt need to link against openssl. This leaves us with what @jemc mentioned above, which is wrapping incompatible apis in C code in libponyrt which is called from the net/ssl and crypto packages and does the switch. While this is some big effort, it enables us to also work with other ssl libs like BoringSSL or LibreSSL or s2n which is a nice advantage imho.

@chalcolith
Copy link
Member

Just FYI, Windows currently uses LibreSSL 2.6.1.

@winksaville
Copy link
Contributor

@mfelsche, just to be clear a -DOPENSSL_API_COMPAT_X_X_X is not need unless you need/want to use openssl 1.1. At the moment I'm unclear how wrapping in C code actually helps, it still seems there's a requirement for some compile time switchs be it in pony or in C code. I must be missing something.

One thing I don't like about my code is in the constructors of digest.pony I duplicated the same code 7 times:

-    _ctx = @EVP_MD_CTX_new[Pointer[_EVPCTX]]()
+    ifdef "OPENSSL_API_COMPAT_1_1_0" then
+      _ctx = @EVP_MD_CTX_new[Pointer[_EVPCTX]]()
+    else
+      _ctx = @EVP_MD_CTX_create[Pointer[_EVPCTX]]()
+    end

I couldn't figure out how to create a method that I could call from a constructor, any suggestions?

@SeanTAllen
Copy link
Member

you can call methods from constructors once every field has been initialized.

@Praetonus
Copy link
Member

Ideally, this kind of issue would be handled by a better FFI, which would be able to parse C headers and conditionally compile code based on the defines in those headers.

Until we have such an FFI (which is one of my mid-long term goals) I'm not sure what the right solution is.

@Earnestly
Copy link
Author

One option would be to simply not support the older version of OpenSSL.

@SeanTAllen
Copy link
Member

Given that the “older version” is widely available on many distros such as RedHat, not supporting it isn’t a user friendly choice and greatly reduces our reach.

@jemc
Copy link
Member

jemc commented Dec 2, 2017

Seems plausible, if you can make it work.

winksaville added a commit to winksaville/ponyc that referenced this issue Dec 13, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 15, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 17, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 17, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 19, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 22, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 25, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 26, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 26, 2017
@mfelsche
Copy link
Contributor

mfelsche commented Dec 27, 2017

The basic issue that emerged with OpenSSL 1.1.0 is that the current FFI is not yet able to differentiate between libraries of different versions. As there are some incompatibilities between OpenSSL 1.0.X and 1.1.X we need to wrap the FFI calls in some conditional compilation statements and only use the 1.1.X API if we know we have it available.

#2415 is fixing this problem for openssl 1.0.0 and 1.1.0 while introducing the burden on the application developer to define "OPENSSL_COMPAT_1_1_0" everytime when compiling his program in order to use the correct openssl version. The goal here should be to do the detection of the openssl version in the compiler, not the Makefile of the compiler only, in order to have such a conditional compilation but without the need to specify anything manually.

There are some possible other solutions to this problem:

  • Have a use "lib:LIBRARY_NAME" statement that makes the library version available to the code where it is used, maybe as an ifdef variable
  • Improve the FFI to be able to read out #DEFINEs from C header files and use them in pony code (in this case OPENSSL_VERSION_NUMBER)
  • create an ifdef variable that is exposing which openssl is available (e.b. openssl_1_0_0 and openssl_1_1_0). Here it should be made so that pony applications that do not use ssl or crypto packages do not need to link against libssl or libcrypto just for having this ifdef variable.

All three would avoid manual definition of a "OPENSSL_COMPAT_1_1_0" flag. But the effort is much higher for all three.

@winksaville
Copy link
Contributor

winksaville commented Dec 27, 2017 via email

winksaville added a commit to winksaville/ponyc that referenced this issue Dec 28, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 29, 2017
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 29, 2017
….1.0

if use=openssl_1.1.0 is passed on the make command line then the
compile time define, -Dopenssl_1.1.0, is passed to the compiler
when building the pony packages. Specifically there are
ifdef "openssl_1.1.0" statements in packages/crypto and packages/net/ssl
which assume the openssl 1.1.0 API's.

To manually compile user programs that want to use openssl 1.1.0 pass
-Dopenssl_1.1.0 on the ponyc command line.

This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 29, 2017
….1.0

To have the ponyc tests use openssl 1.1 you may need pass -Dopenssl_1.1.0
to the compiler. This may be accomplished using either of the two following
command lines:

  make OPENSSL_1.1.0=-Dopenssl_1.1.0 test

or

  make use=openssl_1.1.0 test


Specifically there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's. To manually
compile user programs that want to use openssl 1.1.0 pass -Dopenssl_1.1.0
on the ponyc command line. For instance to compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib


This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 30, 2017
….1.0

To have the ponyc tests use openssl 1.1 you may need pass -Dopenssl_1.1.0
to the compiler. This may be accomplished using either of the two following
command lines:

  make OPENSSL_1.1.0=-Dopenssl_1.1.0 test

or

  make use=openssl_1.1.0 test

Specifically there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's. To manually
compile user programs that want to use openssl 1.1.0 pass -Dopenssl_1.1.0
on the ponyc command line. For instance to compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib

This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Dec 30, 2017
….1.0

To have the ponyc tests use openssl 1.1 you may need pass -Dopenssl_1.1.0
to the compiler. This may be accomplished using either of the two following
command lines:

  make OPENSSL_1.1.0=-Dopenssl_1.1.0 test

or

  make use=openssl_1.1.0 test


Specifically there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's. To manually
compile user programs that want to use openssl 1.1.0 pass -Dopenssl_1.1.0
on the ponyc command line. For instance to compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib


This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Jan 2, 2018
….1.0

To have the ponyc tests use openssl 1.1 you may need pass -Dopenssl_1.1.0
to the compiler. This may be accomplished using either of the two following
command lines:

  make OPENSSL_1.1.0=-Dopenssl_1.1.0 test

or

  make use=openssl_1.1.0 test


Specifically there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's. To manually
compile user programs that want to use openssl 1.1.0 pass -Dopenssl_1.1.0
on the ponyc command line. For instance to compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib


This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Jan 5, 2018
If your system has openssl 1.1.0 and you need to use the crypto or ssl
packages you must define openssl_1.1.0 when invoking ponyc.

Specifically, there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's.  When
compiling using ponyc/Makefile and targeting various tests you need to
set OPENSSL=-Dopenssl_1.1.0. For instance, if targeting "test" the command
line would be:

  make OPENSSL=-Dopenssl_1.1.0 test

If you are compiling pony programs using ponyc in your own Makefile or
directly on the command line and the program uses crypto or ssl then
pass -Dopenssl_1.1.0 on the ponyc command line. For instance, to
compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib

This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Jan 8, 2018
If your system has openssl 1.1.0 and you need to use the crypto or ssl
packages you must define openssl_1.1.0 when invoking ponyc.

Specifically, there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's.  When
compiling using ponyc/Makefile and targeting various tests you need to
set OPENSSL=-Dopenssl_1.1.0. For instance, if targeting "test" the command
line would be:

  make OPENSSL=-Dopenssl_1.1.0 test

If you are compiling pony programs using ponyc in your own Makefile or
directly on the command line and the program uses crypto or ssl then
pass -Dopenssl_1.1.0 on the ponyc command line. For instance, to
compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib

This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Jan 9, 2018
If your system has openssl 1.1.0 and you need to use the crypto or ssl
packages you must define openssl_1.1.0 when invoking ponyc.

Specifically, there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's.  When
compiling using ponyc/Makefile and targeting various tests you need to
set OPENSSL=-Dopenssl_1.1.0. For instance, if targeting "test" the command
line would be:

  make OPENSSL=-Dopenssl_1.1.0 test

If you are compiling pony programs using ponyc in your own Makefile or
directly on the command line and the program uses crypto or ssl then
pass -Dopenssl_1.1.0 on the ponyc command line. For instance, to
compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib

This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Jan 10, 2018
If your system has openssl 1.1.0 and you need to use the crypto or ssl
packages you must define openssl_1.1.0 when invoking ponyc.

Specifically, there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's.  When
compiling using ponyc/Makefile and targeting various tests you need to
set OPENSSL=-Dopenssl_1.1.0. For instance, if targeting "test" the command
line would be:

  make OPENSSL=-Dopenssl_1.1.0 test

If you are compiling pony programs using ponyc in your own Makefile or
directly on the command line and the program uses crypto or ssl then
pass -Dopenssl_1.1.0 on the ponyc command line. For instance, to
compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib

This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Jan 10, 2018
If your system has openssl 1.1.0 and you need to use the crypto or ssl
packages you must define openssl_1.1.0 when invoking ponyc.

Specifically, there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's.  When
compiling using ponyc/Makefile and targeting various tests you need to
set OPENSSL=-Dopenssl_1.1.0. For instance, if targeting "test" the command
line would be:

  make OPENSSL=-Dopenssl_1.1.0 test

If you are compiling pony programs using ponyc in your own Makefile or
directly on the command line and the program uses crypto or ssl then
pass -Dopenssl_1.1.0 on the ponyc command line. For instance, to
compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib

This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Jan 11, 2018
If your system has openssl 1.1.0 and you need to use the crypto or ssl
packages you must define openssl_1.1.0 when invoking ponyc.

Specifically, there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's.  When
compiling using ponyc/Makefile and targeting various tests you need to
set OPENSSL=-Dopenssl_1.1.0. For instance, if targeting "test" the command
line would be:

  make OPENSSL=-Dopenssl_1.1.0 test

If you are compiling pony programs using ponyc in your own Makefile or
directly on the command line and the program uses crypto or ssl then
pass -Dopenssl_1.1.0 on the ponyc command line. For instance, to
compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib

This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Jan 12, 2018
If your system has openssl 1.1.0 and you need to use the crypto or ssl
packages you must define openssl_1.1.0 when invoking ponyc.

Specifically, there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's.  When
compiling using ponyc/Makefile and targeting various tests you need to
set OPENSSL=-Dopenssl_1.1.0. For instance, if targeting "test" the command
line would be:

  make OPENSSL=-Dopenssl_1.1.0 test

If you are compiling pony programs using ponyc in your own Makefile or
directly on the command line and the program uses crypto or ssl then
pass -Dopenssl_1.1.0 on the ponyc command line. For instance, to
compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib

This resolves issue [ponylang#1838](ponylang#1838)
winksaville added a commit to winksaville/ponyc that referenced this issue Jan 15, 2018
If your system has openssl 1.1.0 and you need to use the crypto or ssl
packages you must define openssl_1.1.0 when invoking ponyc.

Specifically, there are ifdef "openssl_1.1.0" statements in packages/crypto
and packages/net/ssl which can use the openssl 1.1.0 API's.  When
compiling using ponyc/Makefile and targeting various tests you need to
set OPENSSL=-Dopenssl_1.1.0. For instance, if targeting "test" the command
line would be:

  make OPENSSL=-Dopenssl_1.1.0 test

If you are compiling pony programs using ponyc in your own Makefile or
directly on the command line and the program uses crypto or ssl then
pass -Dopenssl_1.1.0 on the ponyc command line. For instance, to
compile stdlib:

  ./build/release/ponyc -Dopenssl_1.1.0 packages/stdlib

This resolves issue [ponylang#1838](ponylang#1838)
@winksaville
Copy link
Contributor

I think this can be closed now that #2415 has been merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

10 participants