Skip to content

Commit f7be93c

Browse files
committed
Fix compilation
1 parent bb91531 commit f7be93c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sinol_make/helpers/compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def compile(program, output, compilers: Compilers = None, compile_log = None, we
6565
if ext == '.cpp':
6666
arguments = [compilers.cpp_compiler_path or compiler.get_cpp_compiler_path(), program] + \
6767
extra_compilation_args + ['-o', output] + \
68-
f'--std=c++20 -O3 -lm -ld64 {gcc_compilation_flags} -fdiagnostics-color'.split(' ')
68+
f'--std=c++20 -O3 -lm {gcc_compilation_flags} -fdiagnostics-color'.split(' ')
6969
if use_fsanitize:
7070
arguments += ['-fsanitize=address,undefined']
7171
elif ext == '.c':

0 commit comments

Comments
 (0)