On 5/31/2014 2:26 PM, scl wrote:

Hi,

for days now I have tried to build and install OpenSSL 1.0.1g on OS X
Mavericks (64 bit), but to no avail.
The goal is to include OpenSSL into an application package for OS X
10.6+; I’m not aiming to install it locally on my computer.

My build is controlled by JHBuild. It runs
./Configure --prefix=/Users/username/product/10.9/inst \
-L'/Users/username/product/10.9/inst/lib' zlib no-krb5 \
shared darwin64-x86_64-cc

and then
make -j3 -j 3

Whatever I do I end up with:
making all in crypto/cmac...
…
if [ -n "libcrypto.1.0.0.dylib libssl.1.0.0.dylib" ]; then \
         (cd ..; make -j3 libcrypto.1.0.0.dylib); \
     fi
make[2]: warning: -jN forced in submake: disabling jobserver mode.
[ -z "" ] || /Applications/Xcode.app/Contents/Developer/usr/bin/gcc
-fPIC -fno-common -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT
-DDSO_DLFCN -DHAVE_DLFCN_H -arch x86_64 -O3 -DL_ENDIAN -Wall
-DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5
-DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM
-DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -Iinclude
\
         -DFINGERPRINT_PREMAIN_DSO_LOAD -o fips_premain_dso  \
         fips_premain.c fipscanister.o \
         libcrypto.a -L/Users/username/product/10.9/inst/lib  -lz


This is not an error.  It is a warning that something inside the OpenSSL
make files is using the -j options to make itself, thus triggering a
warning that you have already set -j options on the outer make.

The easiest workaround would be to omit the -j options from the outer
make invocation, or to simply ignore the warning.


Enjoy

Jakob
--
Jakob Bohm, CIO, Partner, WiseMo A/S.  http://www.wisemo.com
Transformervej 29, 2730 Herlev, Denmark.  Direct +45 31 13 16 10
This public discussion message is non-binding and may contain errors.
WiseMo - Remote Service Management for PCs, Phones and Embedded
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to