From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-x236.google.com (mail-wg0-x236.google.com [IPv6:2a00:1450:400c:c00::236]) by dpdk.org (Postfix) with ESMTP id 61E426A6F for ; Wed, 29 May 2013 00:15:32 +0200 (CEST) Received: by mail-wg0-f54.google.com with SMTP id j13so4388435wgh.21 for ; Tue, 28 May 2013 15:15:38 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:subject:date:message-id:x-mailer:in-reply-to:references :in-reply-to:references:x-gm-message-state; bh=bcM67uAOITRiyYI/8HhWRqVLIL2DP649YyYayqkpERs=; b=n+CfJmWBHLufQJwk7upCHb1NL2xsTsceTNCkB0Q+iIquvwAGowVKRyVYMCxtMKmoB2 DPuc3AxbbnsaDYcCUlQ7vLPw0Vp/sF4BVAep3A0/sXr4RNkxeCoByRB0F4Hjcu62urRe wALInGjzwu21EOG9wNuukni33axIqjutQlp9sdeXRAlKjhk2mkBAU1Fr0fBMFefpi0a9 z6zuzbCiv539nw2mtsqYTkybRNW2RFDXjorKeAm1xKiQZehSc7Z3/a2P+RAc9orBUIKS cybY1yseEKHbnKksxuBBAVacsbr7FOEWh23CyYtVhf5OEWIXs/YGiKQsXnpKO87krebo 9P/A== X-Received: by 10.180.149.171 with SMTP id ub11mr13692199wib.40.1369779338364; Tue, 28 May 2013 15:15:38 -0700 (PDT) Received: from 6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id fu14sm27273191wic.8.2013.05.28.15.15.36 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 28 May 2013 15:15:37 -0700 (PDT) Received: by 6wind.com (sSMTP sendmail emulation); Wed, 29 May 2013 00:15:38 +0200 From: Thomas Monjalon To: dev@dpdk.org Date: Wed, 29 May 2013 00:15:33 +0200 Message-Id: <0211e9e6c3255dc46a1c3b2452e38b58f881f907.1369779070.git.thomas.monjalon@6wind.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: In-Reply-To: References: X-Gm-Message-State: ALoCoQn6Kc8oCrr7ovLlXAIY0ID38eeyIYATbHrlef8uJ5v0NFrIlsj5bIB8LlMb5q3o44+zA3s1 Subject: [dpdk-dev] [PATCH v2 1/3] doc: how to build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 May 2013 22:15:32 -0000 This is a cheat sheet to build DPDK and can be used for a "make help". It is explicitly described as a build help in order to concatenate it with other helps such as test commands. Signed-off-by: Thomas Monjalon --- doc/build-sdk-quick.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 doc/build-sdk-quick.txt diff --git a/doc/build-sdk-quick.txt b/doc/build-sdk-quick.txt new file mode 100644 index 0000000..c839676 --- /dev/null +++ b/doc/build-sdk-quick.txt @@ -0,0 +1,20 @@ +Basic build + make config T=x86_64-default-linuxapp-gcc && make +Build commands + config get configuration from target template (T=) + all same as build (default rule) + build build in a configured directory + clean remove files but keep configuration + install build many targets (wildcard allowed) in fixed directories + uninstall remove all installed targets +Build variables + CROSS toolchain prefix + EXTRA_CPPFLAGS preprocessor options + EXTRA_CFLAGS compiler options + EXTRA_LDFLAGS linker options + V verbose + D debug dependencies + O output directory (default: build/) - cannot be used with install + T target template (install default: *) - used with config or install + format: + templates in config/defconfig_* -- 1.7.10.4