2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00

for a C compilation, invoke 'cc' instead of 'aCC -Ae'

[SVN r48034]
This commit is contained in:
Boris Gubenko
2008-08-08 16:38:37 +00:00
parent 6293bfa497
commit 7d3dedb465

View File

@@ -97,7 +97,7 @@ actions acc.link.dll bind NEEDLIBS
actions acc.compile.c
{
$(CONFIG_COMMAND) -Ae -c -I$(BOOST_ROOT) -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) -I"$(HDRS)" -I"$(STDHDRS)" -o "$(<)" "$(>)" $(OPTIONS)
cc -c -I$(BOOST_ROOT) -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) -I"$(HDRS)" -I"$(STDHDRS)" -o "$(<)" "$(>)" $(OPTIONS)
}
actions acc.compile.c++