mirror of
				https://github.com/rad4day/Waybar.git
				synced 2025-10-31 16:02:43 +01:00 
			
		
		
		
	build: handle systems where libc++ is default
ld: error: unable to find library -lstdc++fs ld: error: unable to find library -lc++abi
This commit is contained in:
		
							
								
								
									
										10
									
								
								meson.build
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								meson.build
									
									
									
									
									
								
							| @@ -17,11 +17,13 @@ cpp_link_args = [] | ||||
| if get_option('libcxx') | ||||
|     cpp_args += ['-stdlib=libc++'] | ||||
|     cpp_link_args += ['-stdlib=libc++', '-lc++abi'] | ||||
| endif | ||||
|  | ||||
|     if compiler.has_link_argument('-lc++fs') | ||||
|         cpp_link_args += ['-lc++fs'] | ||||
|     endif | ||||
| else | ||||
| if compiler.has_link_argument('-lc++fs') | ||||
|     cpp_link_args += ['-lc++fs'] | ||||
| elif compiler.has_link_argument('-lc++experimental') | ||||
|     cpp_link_args += ['-lc++experimental'] | ||||
| elif compiler.has_link_argument('-lstdc++fs') | ||||
|     cpp_link_args += ['-lstdc++fs'] | ||||
| endif | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jan Beich
					Jan Beich