From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yw1-f47.google.com (mail-yw1-f47.google.com [209.85.161.47]) by dpdk.org (Postfix) with ESMTP id 19D7A4F94 for ; Tue, 9 Oct 2018 06:10:33 +0200 (CEST) Received: by mail-yw1-f47.google.com with SMTP id j202-v6so82115ywa.13 for ; Mon, 08 Oct 2018 21:10:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=eLgPjPI44sbM3UmoTtTSMo+zpf/840yJU729UHPDCIw=; b=oPLh3zti5t0yzE+f6fHNkC7yvAztnK1PqTODQlCPrUZXelLjFw3OiI33RXAA5BMCFf 9ONA6dz6uVzs6Ws3RTU6pFOPHURB48jQRGge14esFrB4THMeJnE2ndgHDc++oV0Oz/Ux P77TOOkyG6UUKNPENrlHJCaR2BjHMBTsAqyZ2h7WF4ceB1EGU2lB+KaMTi0PRYe0Eq8a Yr1KT22zP7QeYF0EiPhWHyNgoZsMIFqWEXjBGKKJ6B6uQaJJOucwzzmsqzAX0ITSl9VT X1+9rVplswHNFSkeg3YKSqbN7U1nlIWcPUiFVXooYUy0ptxyxcl6GF05ozZLoAN3UlLe Q1ug== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=eLgPjPI44sbM3UmoTtTSMo+zpf/840yJU729UHPDCIw=; b=rFO8U89uhrdg8+bPirrZBmArO2sP8HLEzpgtIsvW0TCrbtFbAeGjjKCVwWS/uVC9iJ D+DruMl8eFymUeIGb/2GGzcWLrcun9T7HuRBSog0YJIe8+jovsg3IBpRJR+kf5mymBvv O1jHRzuSd3RDx3w8c+VqIumB7FohMSySqxL5Pd+8lyg4s4r7kXE8RZN4iIC9gGJoMh7O VqPJmZHn2OtmkMO4jSTXhxAGAStsFbP/Ocjqq0/Wt0ynSOuiWUQ50H7eeyrhBNe3Erxm S7Czmum4EQd0u/BdohyzxXnZm1ajoymdCz9jRBTTyMmCRGdeW21KBwft/CgJM6vIhEUC QLUg== X-Gm-Message-State: ABuFfoiRbfizdtInugPhZD2vzYmsPowRXWsoBWSraUwKFNom6NRq5S5L 4bwYtAC3EljtradyA4YRVUGqGna6haCHIiE3Jka7P5YV X-Google-Smtp-Source: ACcGV6160zkYdJQS820Ko6gsjSmUKT6ZfSvYZ0PuZv6Yny1gTy0+sIZIg4kxwvUCTVAK1yCFx08c6eBW8yEryYS8JOU= X-Received: by 2002:a0d:c045:: with SMTP id b66-v6mr14681492ywd.208.1539058232046; Mon, 08 Oct 2018 21:10:32 -0700 (PDT) MIME-Version: 1.0 From: Cliff Burdick Date: Mon, 8 Oct 2018 21:10:20 -0700 Message-ID: To: users Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] RTE_MACHINE_TYPE Error X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 04:10:34 -0000 Hi, I'm trying to compile on a machine with an older-generation xeon than the target, so I'm using CONFIG_RTE_MACHINE="broadwell" in the config. gcc's options show that broadwell supports the AES flag, and I verified that the build shows -march=broadwell. However, when I run my application it prints immediately: ERROR: This system does not support "AES". Please check that RTE_MACHINE is set correctly. EAL: FATAL: unsupported cpu type. EAL: unsupported cpu type. EAL: Error - exiting with code: 1 Cause: Error with EAL initialization This is gcc 7, so it supports that flag. Does anyone know how I can compile for a later architecture on an older machine?