Skip to content

Commit 0d11176

Browse files
Add generated files
Signed-off-by: David Horstmann <david.horstmann@arm.com>
1 parent ea44fa7 commit 0d11176

File tree

89 files changed

+142351
-33
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+142351
-33
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ if(CMAKE_HOST_WIN32)
7272
# CMakeLists.txt.
7373
option(GEN_FILES "Generate the auto-generated files as needed" OFF) # off in development
7474
else()
75-
option(GEN_FILES "Generate the auto-generated files as needed" ON)
75+
option(GEN_FILES "Generate the auto-generated files as needed" OFF)
7676
endif()
7777

7878
option(DISABLE_PACKAGE_CONFIG_AND_INSTALL "Disable package configuration, target export and installation" ${MBEDTLS_AS_SUBPROJECT})

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ generated_files: visualc_files
5959
# that lacks some of the necessary tools to re-generate the files.
6060
# If $(GEN_FILES) is non-empty, the generated source files' dependencies
6161
# are treated ordinarily, based on file timestamps.
62-
GEN_FILES ?= yes
62+
GEN_FILES ?=
6363

6464
# In dependencies where the target is a configuration-independent generated
6565
# file, use `TARGET: $(gen_file_dep) DEPENDENCY1 DEPENDENCY2 ...`

library/.gitignore

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ libmbed*
22
*.sln
33
*.vcxproj
44

5-
###START_GENERATED_FILES###
6-
/error.c
7-
/version_features.c
8-
/ssl_debug_helpers_generated.c
9-
/psa_crypto_driver_wrappers.h
10-
/psa_crypto_driver_wrappers_no_static.c
11-
###END_GENERATED_FILES###
5+
####START_COMMENTED_GENERATED_FILES###
6+
#/error.c
7+
#/version_features.c
8+
#/ssl_debug_helpers_generated.c
9+
#/psa_crypto_driver_wrappers.h
10+
#/psa_crypto_driver_wrappers_no_static.c
11+
####END_COMMENTED_GENERATED_FILES###

library/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ libmbedcrypto.dll: $(OBJS_CRYPTO)
341341
generated_files: $(GENERATED_FILES)
342342

343343
# See root Makefile
344-
GEN_FILES ?= yes
344+
GEN_FILES ?=
345345
ifdef GEN_FILES
346346
gen_file_dep =
347347
else

0 commit comments

Comments
 (0)