mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	build: Fixes for a few minor issues (#6886)
This commit is contained in:
		
							parent
							
								
									6a1fd38063
								
							
						
					
					
						commit
						66404a669f
					
				
					 3 changed files with 11 additions and 8 deletions
				
			
		
							
								
								
									
										1
									
								
								externals/CMakeLists.txt
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								externals/CMakeLists.txt
									
										
									
									
										vendored
									
									
								
							|  | @ -97,6 +97,7 @@ set(ENABLE_GLSLANG_BINARIES OFF CACHE BOOL "") | ||||||
| set(ENABLE_SPVREMAPPER OFF CACHE BOOL "") | set(ENABLE_SPVREMAPPER OFF CACHE BOOL "") | ||||||
| set(ENABLE_CTEST OFF CACHE BOOL "") | set(ENABLE_CTEST OFF CACHE BOOL "") | ||||||
| set(ENABLE_HLSL OFF CACHE BOOL "") | set(ENABLE_HLSL OFF CACHE BOOL "") | ||||||
|  | set(BUILD_EXTERNAL OFF CACHE BOOL "") | ||||||
| add_subdirectory(glslang) | add_subdirectory(glslang) | ||||||
| 
 | 
 | ||||||
| # inih | # inih | ||||||
|  |  | ||||||
|  | @ -47,7 +47,7 @@ add_library(audio_core STATIC | ||||||
| 
 | 
 | ||||||
| create_target_directory_groups(audio_core) | create_target_directory_groups(audio_core) | ||||||
| 
 | 
 | ||||||
| target_link_libraries(audio_core PUBLIC citra_common) | target_link_libraries(audio_core PUBLIC citra_common citra_core) | ||||||
| target_link_libraries(audio_core PRIVATE SoundTouch teakra) | target_link_libraries(audio_core PRIVATE SoundTouch teakra) | ||||||
| set_target_properties(audio_core PROPERTIES INTERPROCEDURAL_OPTIMIZATION ${ENABLE_LTO}) | set_target_properties(audio_core PROPERTIES INTERPROCEDURAL_OPTIMIZATION ${ENABLE_LTO}) | ||||||
| add_definitions(-DSOUNDTOUCH_INTEGER_SAMPLES) | add_definitions(-DSOUNDTOUCH_INTEGER_SAMPLES) | ||||||
|  |  | ||||||
|  | @ -16,6 +16,7 @@ | ||||||
| #include "common/common_paths.h" | #include "common/common_paths.h" | ||||||
| #include "common/file_util.h" | #include "common/file_util.h" | ||||||
| #include "common/logging/log.h" | #include "common/logging/log.h" | ||||||
|  | #include "common/scope_exit.h" | ||||||
| #include "common/string_util.h" | #include "common/string_util.h" | ||||||
| 
 | 
 | ||||||
| #ifdef _WIN32 | #ifdef _WIN32 | ||||||
|  | @ -324,31 +325,32 @@ bool Copy(const std::string& srcFilename, const std::string& destFilename) { | ||||||
|     return AndroidStorage::CopyFile(srcFilename, std::string(GetParentPath(destFilename)), |     return AndroidStorage::CopyFile(srcFilename, std::string(GetParentPath(destFilename)), | ||||||
|                                     std::string(GetFilename(destFilename))); |                                     std::string(GetFilename(destFilename))); | ||||||
| #else | #else | ||||||
|     using CFilePointer = std::unique_ptr<FILE, decltype(&std::fclose)>; |  | ||||||
| 
 | 
 | ||||||
|     // Open input file
 |     // Open input file
 | ||||||
|     CFilePointer input{fopen(srcFilename.c_str(), "rb"), std::fclose}; |     FILE* input = fopen(srcFilename.c_str(), "rb"); | ||||||
|     if (!input) { |     if (!input) { | ||||||
|         LOG_ERROR(Common_Filesystem, "opening input failed {} --> {}: {}", srcFilename, |         LOG_ERROR(Common_Filesystem, "opening input failed {} --> {}: {}", srcFilename, | ||||||
|                   destFilename, GetLastErrorMsg()); |                   destFilename, GetLastErrorMsg()); | ||||||
|         return false; |         return false; | ||||||
|     } |     } | ||||||
|  |     SCOPE_EXIT({ fclose(input); }); | ||||||
| 
 | 
 | ||||||
|     // open output file
 |     // open output file
 | ||||||
|     CFilePointer output{fopen(destFilename.c_str(), "wb"), std::fclose}; |     FILE* output = fopen(destFilename.c_str(), "wb"); | ||||||
|     if (!output) { |     if (!output) { | ||||||
|         LOG_ERROR(Common_Filesystem, "opening output failed {} --> {}: {}", srcFilename, |         LOG_ERROR(Common_Filesystem, "opening output failed {} --> {}: {}", srcFilename, | ||||||
|                   destFilename, GetLastErrorMsg()); |                   destFilename, GetLastErrorMsg()); | ||||||
|         return false; |         return false; | ||||||
|     } |     } | ||||||
|  |     SCOPE_EXIT({ fclose(output); }); | ||||||
| 
 | 
 | ||||||
|     // copy loop
 |     // copy loop
 | ||||||
|     std::array<char, 1024> buffer; |     std::array<char, 1024> buffer; | ||||||
|     while (!feof(input.get())) { |     while (!feof(input)) { | ||||||
|         // read input
 |         // read input
 | ||||||
|         std::size_t rnum = fread(buffer.data(), sizeof(char), buffer.size(), input.get()); |         std::size_t rnum = fread(buffer.data(), sizeof(char), buffer.size(), input); | ||||||
|         if (rnum != buffer.size()) { |         if (rnum != buffer.size()) { | ||||||
|             if (ferror(input.get()) != 0) { |             if (ferror(input) != 0) { | ||||||
|                 LOG_ERROR(Common_Filesystem, "failed reading from source, {} --> {}: {}", |                 LOG_ERROR(Common_Filesystem, "failed reading from source, {} --> {}: {}", | ||||||
|                           srcFilename, destFilename, GetLastErrorMsg()); |                           srcFilename, destFilename, GetLastErrorMsg()); | ||||||
|                 return false; |                 return false; | ||||||
|  | @ -356,7 +358,7 @@ bool Copy(const std::string& srcFilename, const std::string& destFilename) { | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         // write output
 |         // write output
 | ||||||
|         std::size_t wnum = fwrite(buffer.data(), sizeof(char), rnum, output.get()); |         std::size_t wnum = fwrite(buffer.data(), sizeof(char), rnum, output); | ||||||
|         if (wnum != rnum) { |         if (wnum != rnum) { | ||||||
|             LOG_ERROR(Common_Filesystem, "failed writing to output, {} --> {}: {}", srcFilename, |             LOG_ERROR(Common_Filesystem, "failed writing to output, {} --> {}: {}", srcFilename, | ||||||
|                       destFilename, GetLastErrorMsg()); |                       destFilename, GetLastErrorMsg()); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue