Commit f125b82c authored by Austin English's avatar Austin English Committed by Alexandre Julliard

winebuild: FreeBSD 64-bit binaries are elf_x86_64_fbsd.

parent 2eda9c72
......@@ -305,7 +305,7 @@ const char *get_ld_command(void)
args = (force_pointer_size == 8) ? " -arch x86_64" : " -arch i386";
break;
case PLATFORM_FREEBSD:
args = (force_pointer_size == 8) ? " -m elf_x86_64" : " -m elf_i386_fbsd";
args = (force_pointer_size == 8) ? " -m elf_x86_64_fbsd" : " -m elf_i386_fbsd";
break;
default:
args = (force_pointer_size == 8) ? " -m elf_x86_64" : " -m elf_i386";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment