Skip to content

Commit

Permalink
Reverting x86 build related fixes to focus only on the memory leaks
Browse files Browse the repository at this point in the history
  • Loading branch information
harishsk committed Dec 1, 2020
1 parent 4b74271 commit f7ddf9f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 1 addition & 3 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
<TargetArchitecture Condition="'$(Platform)' == ''">x64</TargetArchitecture>
<NativeTargetArchitecture Condition="'$(NativeTargetArchitecture)' == ''">$(TargetArchitecture)</NativeTargetArchitecture>
<BinDir Condition="'$(BinDir)'==''">$([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts', 'bin'))</BinDir>
<NativeOutputConfig Condition="$(Configuration.Contains('Debug'))">Debug</NativeOutputConfig>
<NativeOutputConfig Condition="$(Configuration.Contains('Release'))">Release</NativeOutputConfig>
<NativeOutputPath>$(BinDir)Native\$(NativeTargetArchitecture).$(NativeOutputConfig)\</NativeOutputPath>
<NativeOutputPath>$(BinDir)Native\$(NativeTargetArchitecture).$(Configuration)\</NativeOutputPath>

<Platform Condition="'$(Platform)'==''">AnyCPU</Platform>
<PlatformConfig>$(Platform).$(Configuration)</PlatformConfig>
Expand Down
3 changes: 0 additions & 3 deletions src/Native/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ while [ "$1" != "" ]; do
shift
done

# strip the -netcoreapp3_1 and -netfx suffixes from the configuration
__configuration=${__configuration/-netcoreapp3_1/}
__configuration=${__configuration/-netfx/}
__cmake_defines="-DCMAKE_BUILD_TYPE=${__configuration} ${__strip_argument} -DMKL_LIB_PATH=${__mkllibpath} -DMKL_LIB_RPATH=${__mkllibrpath}"

__IntermediatesDir="$__baseIntermediateOutputPath/Native/$__build_arch.$__configuration"
Expand Down

0 comments on commit f7ddf9f

Please sign in to comment.