• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révision682a2a82e404a7ec033546f639c89e709ce870e1 (tree)
l'heure2022-11-05 12:23:28
AuteurMike Frysinger <vapier@gent...>
CommiterMike Frysinger

Message de Log

sim: adjust sim_hw options style

We use uppercase for other variables, and are already turning it to
uppercase in the arch-subdir.mk, so convert it in the configure step.

Change Summary

Modification

--- a/sim/Makefile.in
+++ b/sim/Makefile.in
@@ -829,6 +829,8 @@ SHELL = @SHELL@
829829 SIM_COMMON_BUILD_FALSE = @SIM_COMMON_BUILD_FALSE@
830830 SIM_COMMON_BUILD_TRUE = @SIM_COMMON_BUILD_TRUE@
831831 SIM_FRV_TRAPDUMP_FLAGS = @SIM_FRV_TRAPDUMP_FLAGS@
832+SIM_HW_CFLAGS = @SIM_HW_CFLAGS@
833+SIM_HW_SOCKSER = @SIM_HW_SOCKSER@
832834 SIM_INLINE = @SIM_INLINE@
833835 SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@
834836 SIM_RX_CYCLE_ACCURATE_FLAGS = @SIM_RX_CYCLE_ACCURATE_FLAGS@
@@ -889,8 +891,6 @@ sbindir = @sbindir@
889891 sharedstatedir = @sharedstatedir@
890892 sim_bitsize = @sim_bitsize@
891893 sim_float = @sim_float@
892-sim_hw_cflags = @sim_hw_cflags@
893-sim_hw_sockser = @sim_hw_sockser@
894894 srcdir = @srcdir@
895895 subdirs = @subdirs@
896896 sysconfdir = @sysconfdir@
--- a/sim/arch-subdir.mk.in
+++ b/sim/arch-subdir.mk.in
@@ -77,7 +77,7 @@ CGENDIR = @cgendir@
7777
7878 SIM_INLINE = @SIM_INLINE@
7979
80-SIM_HW_CFLAGS = @sim_hw_cflags@
81-SIM_HW_SOCKSER = @sim_hw_sockser@
80+SIM_HW_CFLAGS = @SIM_HW_CFLAGS@
81+SIM_HW_SOCKSER = @SIM_HW_SOCKSER@
8282 SIM_HW_OBJS = $(SIM_COMMON_HW_OBJS) $(SIM_HW_DEVICES:%=dv-%.o) $(SIM_HW_SOCKSER)
8383 @SIM_ENABLE_HW_FALSE@SIM_HW_OBJS =
--- a/sim/configure
+++ b/sim/configure
@@ -644,8 +644,8 @@ SIM_FRV_TRAPDUMP_FLAGS
644644 sim_float
645645 sim_bitsize
646646 SIM_INLINE
647-sim_hw_sockser
648-sim_hw_cflags
647+SIM_HW_SOCKSER
648+SIM_HW_CFLAGS
649649 SIM_ENABLE_HW_FALSE
650650 SIM_ENABLE_HW_TRUE
651651 cgen
@@ -15868,7 +15868,9 @@ fi
1586815868
1586915869 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${enable_sim_hardware}" >&5
1587015870 $as_echo "${enable_sim_hardware}" >&6; }
15871+SIM_HW_CFLAGS=$sim_hw_cflags
1587115872
15873+SIM_HW_SOCKSER=$sim_hw_sockser
1587215874
1587315875
1587415876 { $as_echo "$as_me:${as_lineno-$LINENO}: checking sim inline settings" >&5
--- a/sim/m4/sim_ac_option_hardware.m4
+++ b/sim/m4/sim_ac_option_hardware.m4
@@ -36,6 +36,8 @@ else
3636 fi
3737 AM_CONDITIONAL([SIM_ENABLE_HW], [test "$enable_sim_hardware" = "yes"])
3838 AC_MSG_RESULT(${enable_sim_hardware})
39-AC_SUBST(sim_hw_cflags)
40-AC_SUBST(sim_hw_sockser)
39+SIM_HW_CFLAGS=$sim_hw_cflags
40+AC_SUBST(SIM_HW_CFLAGS)
41+SIM_HW_SOCKSER=$sim_hw_sockser
42+AC_SUBST(SIM_HW_SOCKSER)
4143 ])