From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf0-f45.google.com (mail-lf0-f45.google.com [209.85.215.45]) by dpdk.org (Postfix) with ESMTP id C62633005 for ; Wed, 9 Nov 2016 13:34:12 +0100 (CET) Received: by mail-lf0-f45.google.com with SMTP id t196so163595118lff.3 for ; Wed, 09 Nov 2016 04:34:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=PuYY72VPR53Rm76fSNBhv7EuhMmspzzWElDtewtB8FQ=; b=zz6t49uQaOKHvbPQebwSzETvGBgAqH7gieVPRpBKWPY8ZHicJdoZT3zcqz89pXlV3A EE+SvXlCj8RxCGSfwZvOq4uodqslTDC7w8c9hzfhGWqRM9L6RiqH/KBoyDICVgdrMIdD C3/jW4mKalMHYpjrL2JM+MvhHQOFMrDnC8snTcnCI3dB0bx2mh9k0PxiymnrqXryRnet 5ICF6Fmyj1QhIk6BC0tb3u5z7k2seh0opUDWckRKM8FvxIeCfXKaUUlJsf7dt4NQ5n/N q7hhNCNLxvZh+cCILO5AK4qInHwJwzF9lc8bvtVqur00Q0jDP92gQVE8PDKl3KJsk22u zkUg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=PuYY72VPR53Rm76fSNBhv7EuhMmspzzWElDtewtB8FQ=; b=J2BUY9yR0j58Bao1iRbjYHd8NCtbbiAnAoiOhoktn8vt5FbzWthCBsfRHnyA3ieSzd QTlLxkR50ZbjJGW1fFCKl5JvebNSG3WShXXhWOMd5YXtRKseeF3Vrs+KCR4z5TDdJleo IYGxGLt0VH7RnPgntUc61ARRNfbAgmE7FwCTspPOAvwdwExYUy7hHIEE/mvwqDmUa8AY uGODE7yZDWczdd42hXfArLfDcgV/lnKu7Z3Liw55R4FvTgGmdWqX+GurtVVJhIIHzIx1 u17oKxiD6eiZsA3kf8qkHjKHiDRbVW+8P4nLEBAldHfTKonXx6xxMbcOAYmeApS8VtYd eHfw== X-Gm-Message-State: ABUngvcNJQz0zmPbgeo6cS3PuwOeIbxqzqjLAJUz4apUgAif1HaAisItfh3igzbhiVt9V51TJlmwtk/w3vxdNQ== X-Received: by 10.25.43.12 with SMTP id r12mr10316937lfr.104.1478694852271; Wed, 09 Nov 2016 04:34:12 -0800 (PST) MIME-Version: 1.0 Received: by 10.114.62.17 with HTTP; Wed, 9 Nov 2016 04:34:11 -0800 (PST) From: Nagaprabhanjan Bellaru Date: Wed, 9 Nov 2016 18:04:11 +0530 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] Compiling DPDK 16.07 with shared option is failing.. X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 12:34:13 -0000 Hi, I am compiling DPDK with "CONFIG_RTE_BUILD_SHARED_LIB=y". However, when I compile, it is failing at: -- gcc -pie -fPIC -L/home/ubuntu/development/libfwdd/src/platform/vpp/vpp/build-root/install-vpp_debug-native/dpdk/lib -Wl,-g -shared rte_sched.o rte_red.o rte_approx.o rte_reciprocal.o -z defs -lm -lrt -lrte_eal -lrte_mempool -lrte_mbuf -lrte_timer -Wl,-soname,librte_sched.so.1.1 -o librte_sched.so.1.1 /usr/bin/ld: cannot find -lrte_timer -- I can see that librte_timer is not compiled yet, however librte_sched depends on it - is there any workaround for this issue? Can I change the order somewhere? Thanks, -nagp